Skip to content

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.

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