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

fix method name "parserWith" -> "parseWith"

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