Skip to content

Commit

Permalink
fix code
Browse files Browse the repository at this point in the history
Signed-off-by: silverbullet233 <[email protected]>
  • Loading branch information
silverbullet233 committed Mar 25, 2024
1 parent db6fb86 commit bac0a39
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,6 @@ public static void getDdlStmt(String dbName, Table table, List<String> createTab
|| table.getType() == Table.TableType.FILE) {
sb.append("EXTERNAL ");
}
// @TODO
if (isTemporary) {
sb.append("TEMPORARY ");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public static List<StatisticsCollectJob> buildStatisticsCollectJob(NativeAnalyze
for (Table table : db.getTemporaryTables()) {
createJob(statsJobs, nativeAnalyzeJob, db, table, null);
}
// @TODO create job for temporary table
}
} else if (StatsConstants.DEFAULT_ALL_ID == nativeAnalyzeJob.getTableId()
&& StatsConstants.DEFAULT_ALL_ID != nativeAnalyzeJob.getDbId()) {
Expand Down

0 comments on commit bac0a39

Please sign in to comment.