Columns with name "value"

2017-11-16 Thread Enrico Olivelli
Is it possible to make Calcite SqlParser accept queries on column with name "value" without quoting ? like insert into mytable(name,value values(1,2) I am using Mysql 5.5 conformance and lex below the error Cheers Enrico org.apache.calcite.sql.parser.SqlParseException: Encountered ", value" at

[jira] [Created] (CALCITE-2058) Support JDK 10

2017-11-16 Thread Julian Hyde (JIRA)
Julian Hyde created CALCITE-2058: Summary: Support JDK 10 Key: CALCITE-2058 URL: https://issues.apache.org/jira/browse/CALCITE-2058 Project: Calcite Issue Type: Bug Reporter:

[jira] [Created] (CALCITE-2057) StackOverflowError when running a JDBC query

2017-11-16 Thread Eyal Segal (JIRA)
Eyal Segal created CALCITE-2057: --- Summary: StackOverflowError when running a JDBC query Key: CALCITE-2057 URL: https://issues.apache.org/jira/browse/CALCITE-2057 Project: Calcite Issue Type:

Re: Columns with name "value"

2017-11-16 Thread Julian Hyde
No, it isn’t possible. VALUE is a reserved keyword in Calcite and in standard SQL. Either quote it or rename the column. Julian > On Nov 16, 2017, at 6:01 AM, Enrico Olivelli wrote: > > Is it possible to make Calcite SqlParser accept queries on column with name >