提交 d3853404 authored 作者: Thomas Mueller's avatar Thomas Mueller

Formatting / javadocs

上级 69555d58
...@@ -4215,6 +4215,7 @@ public class Parser { ...@@ -4215,6 +4215,7 @@ public class Parser {
throw getSyntaxError(); throw getSyntaxError();
} }
if (readIf("BTREE")) { if (readIf("BTREE")) {
// default
} else if (readIf("RTREE")) { } else if (readIf("RTREE")) {
spatial = true; spatial = true;
} else if (readIf("HASH")) { } else if (readIf("HASH")) {
......
...@@ -48,7 +48,7 @@ public class TraceWriterAdapter implements TraceWriter { ...@@ -48,7 +48,7 @@ public class TraceWriterAdapter implements TraceWriter {
@Override @Override
public void write(int level, int moduleId, String s, Throwable t) { public void write(int level, int moduleId, String s, Throwable t) {
write(level, Trace.MODULE_NAMES[moduleId], s, t); write(level, Trace.MODULE_NAMES[moduleId], s, t);
}; }
@Override @Override
public void write(int level, String module, String s, Throwable t) { public void write(int level, String module, String s, Throwable t) {
......
...@@ -782,7 +782,7 @@ public class DataType { ...@@ -782,7 +782,7 @@ public class DataType {
* @param sqlTypeName the SQL type name * @param sqlTypeName the SQL type name
* @return the value type * @return the value type
*/ */
private static int convertSQLTypeToValueType(int sqlType, String sqlTypeName) { public static int convertSQLTypeToValueType(int sqlType, String sqlTypeName) {
switch (sqlType) { switch (sqlType) {
case Types.OTHER: case Types.OTHER:
case Types.JAVA_OBJECT: case Types.JAVA_OBJECT:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论