提交 049bd3fa authored 作者: Thomas Mueller's avatar Thomas Mueller

Commas at the end of INSERT ... VALUES (), (), are now supported.

上级 d8f8c54a
......@@ -924,9 +924,9 @@ public class Parser {
Expression[] expr = { };
command.addRow(expr);
} else if (readIf("VALUES")) {
read("(");
do {
ArrayList<Expression> values = New.arrayList();
read("(");
if (!readIf(")")) {
do {
if (readIf("DEFAULT")) {
......@@ -937,7 +937,8 @@ public class Parser {
} while (readIfMore());
}
command.addRow(values.toArray(new Expression[values.size()]));
} while (readIf(","));
// the following condition will allow (..),; and (..);
} while (readIf(",") && readIf("("));
} else {
command.setQuery(parseSelect());
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论