提交 260ba137 authored 作者: noelgrandin's avatar noelgrandin

fix method name "parserWith" -> "parseWith"

上级 a31461bf
......@@ -435,7 +435,7 @@ public class Parser {
case 'w':
case 'W':
if (readIf("WITH")) {
c = parserWith();
c = parseWith();
}
break;
default:
......@@ -1502,7 +1502,7 @@ public class Parser {
} else if (readIf("MERGE")) {
command.setCommand(parseMerge());
} else if (readIf("WITH")) {
command.setCommand(parserWith());
command.setCommand(parseWith());
} else {
throw getSyntaxError();
}
......@@ -4211,7 +4211,7 @@ public class Parser {
return command;
}
private Query parserWith() {
private Query parseWith() {
readIf("RECURSIVE");
String tempViewName = readIdentifierWithSchema();
Schema schema = getSchema();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论