Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
zddr committed Dec 20, 2023
1 parent 2c1f00d commit 11c1ae8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@ public boolean isSyncLoadKindStmt() {
|| (logicalPlan instanceof CreateTableCommand
&& ((CreateTableCommand) logicalPlan).isCtasCommand());
}
return parsedStmt instanceof InsertStmt || parsedStmt instanceof CreateTableAsSelectStmt;
return parsedStmt instanceof InsertStmt || parsedStmt instanceof InsertOverwriteTableStmt
|| parsedStmt instanceof CreateTableAsSelectStmt;
}

public boolean isAnalyzeStmt() {
Expand Down

0 comments on commit 11c1ae8

Please sign in to comment.