We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d8df52 commit 5c6c0b5Copy full SHA for 5c6c0b5
test/parallel/test-sqlite-data-types.js
@@ -93,7 +93,7 @@ suite('data binding and mapping', () => {
93
buf: null,
94
});
95
96
- const insertNamedParams = db.prepare(`INSERT INTO types VALUES ($key, $int, $double, $text, $buf)`);
+ const insertNamedParams = db.prepare('INSERT INTO types VALUES ($key, $int, $double, $text, $buf)');
97
const params = { key: 6, int: undefined, double: undefined, text: undefined, buf: undefined };
98
t.assert.deepStrictEqual(insertNamedParams.run(params), { changes: 1, lastInsertRowid: 6 });
99
t.assert.deepStrictEqual(insertNamedParams.run({ key: 7 }), { changes: 1, lastInsertRowid: 7 });
0 commit comments