Skip to content

Commit 37f0477

Browse files
committed
use INTEGER instead of NUMBER
1 parent 800d5a1 commit 37f0477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-sqlite-template-tag.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ test('sql.db returns the associated DatabaseSync instance', () => {
104104
test('regression test https://github.com/nodejs/node/issues/60448', () => {
105105
const sql = new DatabaseSync(':memory:').createTagStore();
106106

107-
sql.db.exec('CREATE TABLE test (data NUMBER)');
107+
sql.db.exec('CREATE TABLE test (data INTEGER)');
108108

109109
// Simulating meaningful work/likely triggering garbage collection...
110110
for (const x of new Array(100_000).fill(0)) {

0 commit comments

Comments
 (0)