danny0405 commented on a change in pull request #1066: [CALCITE-2843] Babel
parser should support PostgreSQL casting operator '::'
URL: https://github.com/apache/calcite/pull/1066#discussion_r300819383
##########
File path: babel/src/main/codegen/includes/parserImpls.ftl
##########
@@ -50,4 +50,28 @@ SqlNode DateFunctionCall() :
| < TILDE: "~" >
}
+SqlBinaryOperator SpecialBinaryOperator() :
+{
+}
+{
+ <PG_CAST> { return SqlStdOperatorTable.PG_CAST; }
+}
Review comment:
You can replace `SqlStdOperatorTable.PG_CAST` with
`SqlStdOperatorTable.CAST` cause they have the same semantics.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services