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
In mysql: Quoted strings placed next to each other are concatenated to a single string.
'a string'
'a' ' ' 'string'
mysql> SELECT 'hello', '"hello"', '""hello""', 'hel''lo', '\'hello'; +-------+---------+-----------+--------+--------+ | hello | "hello" | ""hello"" | hel'lo | 'hello | +-------+---------+-----------+--------+--------+ mysql> SELECT "hello", "'hello'", "''hello''", "hel""lo", "\"hello"; +-------+---------+-----------+--------+--------+ | hello | 'hello' | ''hello'' | hel"lo | "hello | +-------+---------+-----------+--------+--------+
ref #543
The text was updated successfully, but these errors were encountered:
some of the above literals are syntax error in nGQL
syntax error
Sorry, something went wrong.
add more testcase (vesoft-inc#623)
736aafc
Co-authored-by: jimingquan <[email protected]>
laura-ding
No branches or pull requests
In mysql: Quoted strings placed next to each other are concatenated to a single string.
'a string'
'a' ' ' 'string'
ref #543
The text was updated successfully, but these errors were encountered: