-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
upgrade dependencies #87
base: master
Are you sure you want to change the base?
Conversation
@@ -14,8 +15,6 @@ tap.test('compile_options', (t) => { | |||
t.notEqual(pragmas.ENABLE_RTREE, '0', 'ENABLE_RTREE != 0') | |||
t.true(pragmas.hasOwnProperty('ENABLE_COLUMN_METADATA'), 'ENABLE_COLUMN_METADATA') | |||
t.notEqual(pragmas.ENABLE_COLUMN_METADATA, '0', 'ENABLE_COLUMN_METADATA != 0') | |||
t.true(pragmas.hasOwnProperty('ENABLE_JSON1'), 'ENABLE_JSON1') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -55,7 +54,7 @@ tap.test('dependencies', (t) => { | |||
|
|||
res = db.prepare(`SELECT geos_version()`).get() | |||
actual = semver.coerce(res['geos_version()']) | |||
expected = semver.coerce('3.8.1-CAPI-1.13.3') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test seems to do nothing, it passed on any semver 🤷
#define SQLITE_ENABLE_DBSTAT_VTAB 1 | ||
#define SQLITE_ENABLE_DESERIALIZE 1 | ||
#define SQLITE_ENABLE_MATH_FUNCTIONS 1 | ||
#define SQLITE_TRACE_SIZE_LIMIT 32 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New pragmas defined by better-sqlite3
tested and working on node
v20.18.1
on MacOS