Skip to content

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

burtontanner
Copy link

No description provided.

Copy link
Owner

@tshemsedinov tshemsedinov left a 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) +'`', [],
Copy link
Owner

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

@burtontanner
Copy link
Author

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') {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why only order?

Copy link
Owner

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 + '`';

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants