mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 16:29:20 +08:00
Fix vtab modules
`xShadowName` added
This commit is contained in:
parent
ae461b8ed2
commit
287e2f5dbc
@ -59,7 +59,7 @@ regex = "1.0"
|
|||||||
|
|
||||||
[dependencies.libsqlite3-sys]
|
[dependencies.libsqlite3-sys]
|
||||||
path = "libsqlite3-sys"
|
path = "libsqlite3-sys"
|
||||||
version = "0.10"
|
version = "0.11"
|
||||||
|
|
||||||
[[test]]
|
[[test]]
|
||||||
name = "config_log"
|
name = "config_log"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libsqlite3-sys"
|
name = "libsqlite3-sys"
|
||||||
version = "0.10.1"
|
version = "0.11.0"
|
||||||
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
repository = "https://github.com/jgallagher/rusqlite"
|
repository = "https://github.com/jgallagher/rusqlite"
|
||||||
|
@ -22,5 +22,5 @@ find $SCRIPT_DIR/target -type f -name bindgen.rs -exec cp {} $SQLITE3_LIB_DIR/bi
|
|||||||
# Sanity check
|
# Sanity check
|
||||||
cd $SCRIPT_DIR/..
|
cd $SCRIPT_DIR/..
|
||||||
cargo update
|
cargo update
|
||||||
cargo test --features "backup blob chrono functions limits load_extension serde_json trace bundled"
|
cargo test --features "backup blob chrono functions limits load_extension serde_json trace vtab bundled"
|
||||||
echo 'You should increment the version in libsqlite3-sys/Cargo.toml'
|
echo 'You should increment the version in libsqlite3-sys/Cargo.toml'
|
||||||
|
@ -99,6 +99,7 @@ pub fn read_only_module<T: CreateVTab>(version: c_int) -> Module<T> {
|
|||||||
xSavepoint: None,
|
xSavepoint: None,
|
||||||
xRelease: None,
|
xRelease: None,
|
||||||
xRollbackTo: None,
|
xRollbackTo: None,
|
||||||
|
xShadowName: None,
|
||||||
};
|
};
|
||||||
Module {
|
Module {
|
||||||
base: ffi_module,
|
base: ffi_module,
|
||||||
@ -137,6 +138,7 @@ pub fn eponymous_only_module<T: VTab>(version: c_int) -> Module<T> {
|
|||||||
xSavepoint: None,
|
xSavepoint: None,
|
||||||
xRelease: None,
|
xRelease: None,
|
||||||
xRollbackTo: None,
|
xRollbackTo: None,
|
||||||
|
xShadowName: None,
|
||||||
};
|
};
|
||||||
Module {
|
Module {
|
||||||
base: ffi_module,
|
base: ffi_module,
|
||||||
|
Loading…
Reference in New Issue
Block a user