Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -482,8 +482,8 @@ const introspection = (connection) => {
//
connection.fields = function(table, callback) {
this.queryHash(
'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

(err, res) => {
if (err) res = false;
callback(err, res);
Expand Down