Bump bundled SQLite version to 3.46.0

This commit is contained in:
gwenn
2024-05-23 19:04:09 +02:00
parent e457af99d2
commit 99af0ac712
5 changed files with 5193 additions and 3395 deletions

View File

@@ -23,10 +23,10 @@ extern "C" {
) -> ::std::os::raw::c_int;
}
pub const SQLITE_VERSION: &[u8; 7] = b"3.45.3\0";
pub const SQLITE_VERSION_NUMBER: i32 = 3045003;
pub const SQLITE_VERSION: &[u8; 7] = b"3.46.0\0";
pub const SQLITE_VERSION_NUMBER: i32 = 3046000;
pub const SQLITE_SOURCE_ID: &[u8; 85] =
b"2024-04-15 13:34:05 8653b758870e6ef0c98d46b3ace27849054af85da891eb121e9aaa537f1e8355\0";
b"2024-05-23 13:25:27 96c92aba00c8375bc32fafcdf12429c58bd8aabfcadab6683e35bbb9cdebf19e\0";
pub const SQLITE_OK: i32 = 0;
pub const SQLITE_ERROR: i32 = 1;
pub const SQLITE_INTERNAL: i32 = 2;
@@ -2883,6 +2883,12 @@ extern "C" {
pData: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn sqlite3changegroup_add_change(
arg1: *mut sqlite3_changegroup,
arg2: *mut sqlite3_changeset_iter,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn sqlite3changegroup_output(
arg1: *mut sqlite3_changegroup,