We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0722b3b commit 0a922b3Copy full SHA for 0a922b3
1 file changed
test/util.spec.js
@@ -46,6 +46,10 @@ describe('util function test', () => {
46
it('should support columnIdentifierToSql without ident', () => {
47
expect(columnIdentifierToSql()).to.be.undefined
48
})
49
+
50
+ it('should sqlify backticks_quote_string', () => {
51
+ expect(literalToSQL({ type: 'backticks_quote_string', parentheses: true , value: "abc" })).to.equal('(`abc`)')
52
+ })
53
54
55
describe('over to sql', () => {
0 commit comments