Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
pengzhiwei committed Aug 22, 2019
1 parent 04085d1 commit 5a9d3d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/main/codegen/templates/Parser.jj
Original file line number Diff line number Diff line change
Expand Up @@ -1605,7 +1605,8 @@ SqlNode SelectItem() :
<RPAREN>
{
if (!this.conformance.allowSelectTableFunction()) {
throw SqlUtil.newContextException(getPos(), RESOURCE.notAllowTableFunctionInSelect());
throw SqlUtil.newContextException(getPos(),
RESOURCE.notAllowTableFunctionInSelect());
}
e = SqlStdOperatorTable.AS.createCall(s.end(e), e, new SqlNodeList(ids, s.end(e)));
}
Expand Down

0 comments on commit 5a9d3d3

Please sign in to comment.