Skip to content

Commit

Permalink
[Feature-#1920][kingbase] fixed syntax error at or near "t1"
Browse files Browse the repository at this point in the history
  • Loading branch information
libailin authored and zoudaokoulife committed Oct 12, 2024
1 parent 707e461 commit 5432e78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public String getInsertIntoStatement(String schema, String tableName, String[] f
Arrays.stream(fieldNames).map(f -> ":" + f).collect(Collectors.joining(", "));
return "INSERT INTO "
+ buildTableInfoWithSchema(schema, tableName)
+ " t1 "
+ " as t1 "
+ "("
+ columns
+ ")"
Expand Down

0 comments on commit 5432e78

Please sign in to comment.