-
-
Notifications
You must be signed in to change notification settings - Fork 23
this will now allow keyword tables like order #20
New issue
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
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it is better to add ` in escapeIdentifier
utilities.js
Outdated
'SHOW FULL COLUMNS FROM ' + | ||
escapeIdentifier(table), [], | ||
'SHOW FULL COLUMNS FROM `' + | ||
escapeIdentifier(table) +'`', [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use npm test
to see linter errors
I just pushed some changes to move it into escapedIdentifier and npm test is working again. |
@@ -4,7 +4,9 @@ const identifierRegexp = /^[0-9,a-z,A-Z_.]*$/; | |||
|
|||
const escapeIdentifier = (str, quote) => { | |||
quote = quote || '`'; | |||
if (identifierRegexp.test(str)) return str; | |||
if (str === 'order') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why only order?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (!reservedWords.includes(str) && identifierRegexp.test(str)) return str;
return '`' + str + '`';
No description provided.