Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sqlite: enable common flags #57621

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 8 additions & 1 deletion deps/sqlite/sqlite.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,16 @@
'defines': [
'SQLITE_DEFAULT_MEMSTATUS=0',
'SQLITE_ENABLE_COLUMN_METADATA',
'SQLITE_ENABLE_DBSTAT_VTAB',
'SQLITE_ENABLE_FTS3',
'SQLITE_ENABLE_FTS3_PARENTHESIS',
'SQLITE_ENABLE_FTS5',
'SQLITE_ENABLE_GEOPOLY',
'SQLITE_ENABLE_MATH_FUNCTIONS',
'SQLITE_ENABLE_PREUPDATE_HOOK',
'SQLITE_ENABLE_RBU',
'SQLITE_ENABLE_RTREE',
'SQLITE_ENABLE_SESSION',
'SQLITE_ENABLE_PREUPDATE_HOOK'
],
'include_dirs': ['.'],
'sources': [
Expand Down
9 changes: 8 additions & 1 deletion deps/sqlite/unofficial.gni
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,16 @@ template("sqlite_gn_build") {
include_dirs = [ "." ]
defines = [
"SQLITE_ENABLE_COLUMN_METADATA",
"SQLITE_ENABLE_DBSTAT_VTAB",
"SQLITE_ENABLE_FTS3",
"SQLITE_ENABLE_FTS3_PARENTHESIS",
"SQLITE_ENABLE_FTS5",
"SQLITE_ENABLE_GEOPOLY",
"SQLITE_ENABLE_MATH_FUNCTIONS",
"SQLITE_ENABLE_SESSION",
"SQLITE_ENABLE_PREUPDATE_HOOK",
"SQLITE_ENABLE_RBU",
"SQLITE_ENABLE_RTREE",
"SQLITE_ENABLE_SESSION",
]
}

Expand Down
140 changes: 131 additions & 9 deletions test/parallel/test-sqlite.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,6 @@ test('PRAGMAs are supported', (t) => {
);
});

test('math functions are enabled', (t) => {
const db = new DatabaseSync(':memory:');
t.assert.deepStrictEqual(
db.prepare('SELECT PI() AS pi').get(),
{ __proto__: null, pi: 3.141592653589793 },
);
});

test('Buffer is supported as the database path', (t) => {
const db = new DatabaseSync(Buffer.from(nextDb()));
t.after(() => { db.close(); });
Expand Down Expand Up @@ -142,7 +134,6 @@ test('URL is supported as the database path', (t) => {
);
});


suite('URI query params', () => {
const baseDbPath = nextDb();
const baseDb = new DatabaseSync(baseDbPath);
Expand Down Expand Up @@ -210,3 +201,134 @@ suite('URI query params', () => {
});
});
});

suite('SQL APIs enabled at build time', () => {
test('math functions are enabled', (t) => {
const db = new DatabaseSync(':memory:');
t.assert.deepStrictEqual(
db.prepare('SELECT PI() AS pi').get(),
{ __proto__: null, pi: 3.141592653589793 },
);
});

test('dbstat is enabled', (t) => {
const db = new DatabaseSync(nextDb());
t.after(() => { db.close(); });
db.exec(`
CREATE TABLE t1 (key INTEGER PRIMARY KEY);
`);

t.assert.deepStrictEqual(
db.prepare('SELECT * FROM dbstat WHERE name = \'t1\'').get(),
{
__proto__: null,
mx_payload: 0,
name: 't1',
ncell: 0,
pageno: 2,
pagetype: 'leaf',
path: '/',
payload: 0,
pgoffset: 4096,
pgsize: 4096,
unused: 4088
},
);
});

test('fts3 is enabled', (t) => {
const db = new DatabaseSync(':memory:');
db.exec(`
CREATE VIRTUAL TABLE t1 USING fts3(content TEXT);
INSERT INTO t1 (content) VALUES ('hello world');
`);

t.assert.deepStrictEqual(
db.prepare('SELECT * FROM t1 WHERE t1 MATCH \'hello\'').all(),
[
{ __proto__: null, content: 'hello world' },
],
);
});

test('fts3 parenthesis', (t) => {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is inconsistent with the rest, missing is enabled in its name.

const db = new DatabaseSync(':memory:');
db.exec(`
CREATE VIRTUAL TABLE t1 USING fts3(content TEXT);
INSERT INTO t1 (content) VALUES ('hello world');
`);

t.assert.deepStrictEqual(
db.prepare('SELECT * FROM t1 WHERE content MATCH \'(groupedterm1 OR groupedterm2) OR hello world\'').all(),
[
{ __proto__: null, content: 'hello world' },
],
);
});

test('fts4 is enabled', (t) => {
const db = new DatabaseSync(':memory:');
db.exec(`
CREATE VIRTUAL TABLE t1 USING fts4(content TEXT);
INSERT INTO t1 (content) VALUES ('hello world');
`);

t.assert.deepStrictEqual(
db.prepare('SELECT * FROM t1 WHERE t1 MATCH \'hello\'').all(),
[
{ __proto__: null, content: 'hello world' },
],
);
});

test('fts5 is enabled', (t) => {
const db = new DatabaseSync(':memory:');
db.exec(`
CREATE VIRTUAL TABLE t1 USING fts5(content);
INSERT INTO t1 (content) VALUES ('hello world');
`);

t.assert.deepStrictEqual(
db.prepare('SELECT * FROM t1 WHERE t1 MATCH \'hello\'').all(),
[
{ __proto__: null, content: 'hello world' },
],
);
});

test('rtree is enabled', (t) => {
const db = new DatabaseSync(':memory:');
db.exec(`
CREATE VIRTUAL TABLE t1 USING rtree(id, minX, maxX, minY, maxY);
INSERT INTO t1 (id, minX, maxX, minY, maxY) VALUES (1, 0, 1, 0, 1);
`);

t.assert.deepStrictEqual(
db.prepare('SELECT * FROM t1 WHERE minX < 0.5').all(),
[
{ __proto__: null, id: 1, minX: 0, maxX: 1, minY: 0, maxY: 1 },
],
);
});

test('rbu is enabled', (t) => {
const db = new DatabaseSync(':memory:');
t.assert.deepStrictEqual(
db.prepare('SELECT sqlite_compileoption_used(\'SQLITE_ENABLE_RBU\') as rbu_enabled;').get(),
{ __proto__: null, rbu_enabled: 1 },
);
});

test('geopoly is enabled', (t) => {
const db = new DatabaseSync(':memory:');
db.exec(`
CREATE VIRTUAL TABLE t1 USING geopoly(a,b,c);
INSERT INTO t1(_shape) VALUES('[[0,0],[1,0],[0.5,1],[0,0]]');
`);

t.assert.deepStrictEqual(
db.prepare('SELECT rowid FROM t1 WHERE geopoly_contains_point(_shape, 0, 0)').get(),
{ __proto__: null, rowid: 1 },
);
});
});
Loading