Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix typo in project #1554

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public enum AiSqlSourceEnum implements BaseEnum<String> {
CLAUDEAI("CLAUDE AI"),

/**
* WNEXIN AI
* WENXIN AI
*/
WENXINAI("WENXIN AI"),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import org.junit.jupiter.api.Test;

@Slf4j
public class SqlTeset extends BaseTest {
public class SqlTest extends BaseTest {

@Resource
private TableService tableService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public WebPageResult<UserTeamPageQueryVO> page(@Valid UserPageCommonQueryRequest
* @version 2.1.0
*/
@PostMapping("/batch_create")
public ActionResult bacthCreate(@Valid @RequestBody UserTeamBatchCreateRequest request) {
public ActionResult batchCreate(@Valid @RequestBody UserTeamBatchCreateRequest request) {
request.getTeamIdList()
.forEach(teamId -> {
TeamUserPageQueryParam teamUserPageQueryParam = new TeamUserPageQueryParam();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
public interface DataSourceBaseRequestInfo {

/**
* Get datasoure id
* Get datasource id
* @return
*/
Long getDataSourceId();

/**
* get datasoure name
* get datasource name
* @return
*/
String getDatabaseName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

/**
* @author jipengfei
* @version : UserQueyRequest.java
* @version : UserQueryRequest.java
*/
@Data
@SuperBuilder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public interface ValueProcessor {
* <br>
* Input oracle DATE : '2024-05-29 11:35:20.0'
* <br>
* Output for Oracle DATE: TO_DATE('2024-05-29 14:25:00', 'SYYYY-MM-DD HH24:MI:SS')
* Output for Oracle DATE: TO_DATE('2024-05-29 14:25:00', 'YYYY-MM-DD HH24:MI:SS')
*/
String getSqlValueString(SQLDataValue dataValue);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static Connection getConnection(ConnectInfo connectInfo) {
Connection connection = connectInfo.getConnection();
try {
if (connection != null && !connection.isClosed()) {
log.info("get connection from loacl");
log.info("get connection from local");
return connection;
}
String key = connectInfo.getKey();
Expand All @@ -72,7 +72,7 @@ public static Connection getConnection(ConnectInfo connectInfo) {
synchronized (lock) {
connection = connectInfo.getConnection();
if (connection != null && !connection.isClosed()) {
log.info("get connection from loacl");
log.info("get connection from local");
return connection;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ private int isPLBlockEnd(Token[] tokens, int pos) {
int posShift = 0;
/**
* <pre>
* `subPLStack` in this function must not be empty because this fuction must be called when state in PL_STMT
* `subPLStack` in this function must not be empty because this function must be called when state in PL_STMT
* `subPLStack` must have been pushed at least once before enter PL_STMT
* </pre>
*/
Expand Down