Bump bundled SQLite version to 3.47.0

This commit is contained in:
gwenn
2024-10-23 19:22:47 +02:00
parent 2b21206c78
commit c771c222cd
7 changed files with 5881 additions and 2803 deletions

View File

@@ -387,6 +387,8 @@ bitflags::bitflags! {
const SQLITE_INNOCUOUS = 0x0000_0020_0000; // 3.31.0
/// Indicates to SQLite that a function might call `sqlite3_result_subtype()` to cause a subtype to be associated with its result.
const SQLITE_RESULT_SUBTYPE = 0x0000_0100_0000; // 3.45.0
/// Indicates that the function is an aggregate that internally orders the values provided to the first argument.
const SQLITE_SELFORDER1 = 0x0000_0200_0000; // 3.47.0
}
}

View File

@@ -377,6 +377,8 @@ bitflags::bitflags! {
const NONE = 0;
/// Scan visits at most 1 row.
const SQLITE_INDEX_SCAN_UNIQUE = ffi::SQLITE_INDEX_SCAN_UNIQUE;
/// Display idxNum as hex in EXPLAIN QUERY PLAN
const SQLITE_INDEX_SCAN_HEX = 0x0000_0002; // 3.47.0
}
}