提交 9f9d1bda authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Fix commit 76e61e71

上级 e93d2685
......@@ -3762,8 +3762,8 @@ public class Parser {
break;
case IDENTIFIER:
String name = currentToken;
read();
if (currentTokenQuoted) {
read();
if (readIf(OPEN_PAREN)) {
r = readFunction(null, name);
} else if (readIf(DOT)) {
......@@ -3772,6 +3772,7 @@ public class Parser {
r = new ExpressionColumn(database, null, null, name);
}
} else {
read();
if (readIf(DOT)) {
r = readTermObjectDot(name);
} else if (readIf(OPEN_PAREN)) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论