We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An example from ClickHouse docs:
SELECT JSONExtract( '{"day": "Thursday"}', 'day', 'Enum8(\'Sunday\' = 0, \'Monday\' = 1, \'Tuesday\' = 2, \'Wednesday\' = 3, \'Thursday\' = 4, \'Friday\' = 5, \'Saturday\' = 6)' )
-- Expecting ). Line 1, Col: 64. -- SELECT JSONExtract('{"day": "Thursday"}', 'day', 'Enum8(\'�[4mSunday�[0m\' = 0, \'Monday\' = 1, \'Tuesday\' = 2, \'Wednesday\' = 3, \'Thursday\' = 4, \'Friday\' = 5, \'Satu -- -- Invalid expression / Unexpected token. Line 1, Col: 65. -- SELECT JSONExtract('{"day": "Thursday"}', 'day', 'Enum8(\'Sunday�[4m\�[0m' = 0, \'Monday\' = 1, \'Tuesday\' = 2, \'Wednesday\' = 3, \'Thursday\' = 4, \'Friday\' = 5, \'Satur
The text was updated successfully, but these errors were encountered:
4f31a50
Fix: clickhouse backslash str escape closes tobymao#1719
1eb7090
No branches or pull requests
An example from ClickHouse docs:
The text was updated successfully, but these errors were encountered: