[#5955] Support VALUES() constructor as top level query

This commit is contained in:
lukaseder 2017-03-31 17:23:30 +02:00
parent ffcbd34fc1
commit 5d3507e418

View File

@ -460,6 +460,11 @@ class ParserImpl implements Parser {
break;
case 'v':
case 'V':
if (peekKeyword(ctx, "VALUES"))
return DSL.selectFrom(parseTableValueConstructor(ctx));
case 'w':
case 'W':
if (peekKeyword(ctx, "WITH"))