提交 774ea0ca authored 作者: Thomas Mueller's avatar Thomas Mueller

Support MERGE INTO TEST (SELECT * FROM TEST) - same as for INSERT.

上级 ad072d1d
...@@ -845,6 +845,11 @@ public class Parser { ...@@ -845,6 +845,11 @@ public class Parser {
Table table = readTableOrView(); Table table = readTableOrView();
command.setTable(table); command.setTable(table);
if (readIf("(")) { if (readIf("(")) {
if (isToken("SELECT") || isToken("FROM")) {
command.setQuery(parseSelect());
read(")");
return command;
}
Column[] columns = parseColumnList(table); Column[] columns = parseColumnList(table);
command.setColumns(columns); command.setColumns(columns);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论