提交 91ae3201 authored 作者: Thomas Mueller's avatar Thomas Mueller

Formatting, javadocs.

上级 7b1ed627
...@@ -64,7 +64,7 @@ public class DropDatabase extends DefineCommand { ...@@ -64,7 +64,7 @@ public class DropDatabase extends DefineCommand {
db.removeSchemaObject(session, t); db.removeSchemaObject(session, t);
} }
} }
// There can be dependencies between tables e.g. using computed columns, // There can be dependencies between tables e.g. using computed columns,
// so we might need to loop over them multiple times. // so we might need to loop over them multiple times.
boolean runLoopAgain = false; boolean runLoopAgain = false;
...@@ -80,7 +80,7 @@ public class DropDatabase extends DefineCommand { ...@@ -80,7 +80,7 @@ public class DropDatabase extends DefineCommand {
} }
} }
} while (runLoopAgain); } while (runLoopAgain);
for (Table t : tables) { for (Table t : tables) {
if (t.getName() != null && Table.EXTERNAL_TABLE_ENGINE.equals(t.getTableType()) && !t.isHidden()) { if (t.getName() != null && Table.EXTERNAL_TABLE_ENGINE.equals(t.getTableType()) && !t.isHidden()) {
db.removeSchemaObject(session, t); db.removeSchemaObject(session, t);
......
...@@ -213,7 +213,7 @@ public class SetTypes { ...@@ -213,7 +213,7 @@ public class SetTypes {
* The type of a SET RETENTION_TIME statement. * The type of a SET RETENTION_TIME statement.
*/ */
public static final int RETENTION_TIME = 40; public static final int RETENTION_TIME = 40;
/** /**
* The type of a SET QUERY_STATISTICS_ACTIVE statement. * The type of a SET QUERY_STATISTICS_ACTIVE statement.
*/ */
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论