Closed maxorcist closed 3 years ago
That's interesting, knex is not using wrapIdentifier
in this function. Not to shirk responsibility but I suppose this should be an issue directed at the knex library, as there's nothing I can do about it.
Ah! Alright, thank you for the answer.
When plucking, snakecase vs camelcase returns different results: knex('tablename').pluck('user_id') > [2, 3] knex('tablename').pluck('userId') > [undefined, undefined]