From 5a9d3d3de49fb1b16e638229f8e11f9a8670306f Mon Sep 17 00:00:00 2001 From: pengzhiwei Date: Thu, 22 Aug 2019 18:05:17 +0800 Subject: [PATCH] format code --- core/src/main/codegen/templates/Parser.jj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/codegen/templates/Parser.jj b/core/src/main/codegen/templates/Parser.jj index db46351d8e31..8d6cc2fd47f3 100644 --- a/core/src/main/codegen/templates/Parser.jj +++ b/core/src/main/codegen/templates/Parser.jj @@ -1605,7 +1605,8 @@ SqlNode SelectItem() : { 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))); }