You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Redshift the syntax for SET statements is SET x TO y, for example: SET enable_case_sensitive_identifier to true
This format is not supported and fails with
net.sf.jsqlparser.JSQLParserException: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "true" "TRUE"
at line 1, column 41.
Was expecting one of:
"&"
","
"::"
";"
"<<"
">>"
"["
"^"
"|"
<EOF>
at net.sf.jsqlparser.parser.CCJSqlParserUtil.parseStatement(CCJSqlParserUtil.java:263)
at net.sf.jsqlparser.parser.CCJSqlParserUtil.parse(CCJSqlParserUtil.java:81)
at net.sf.jsqlparser.test.TestUtils.assertSqlCanBeParsedAndDeparsed(TestUtils.java:94)
at net.sf.jsqlparser.test.TestUtils.assertSqlCanBeParsedAndDeparsed(TestUtils.java:81)
at net.sf.jsqlparser.test.TestUtils.assertSqlCanBeParsedAndDeparsed(TestUtils.java:67)
at net.sf.jsqlparser.statement.SetStatementTest.setTo(SetStatementTest.java:76)
...
The text was updated successfully, but these errors were encountered:
In Redshift the syntax for SET statements is
SET x TO y
, for example:SET enable_case_sensitive_identifier to true
This format is not supported and fails with
The text was updated successfully, but these errors were encountered: