mirror of
https://github.com/isar/rusqlite.git
synced 2025-11-26 22:52:30 +08:00
Introduce context module
To make `set_result` and `report_error` in functions module visible to vtab module.
This commit is contained in:
@@ -65,11 +65,7 @@ impl VTab for SeriesTab {
|
||||
type Aux = ();
|
||||
type Cursor = SeriesTabCursor;
|
||||
|
||||
unsafe fn connect(
|
||||
db: *mut ffi::sqlite3,
|
||||
_aux: *mut (),
|
||||
_args: &[&[u8]],
|
||||
) -> Result<SeriesTab> {
|
||||
unsafe fn connect(db: *mut ffi::sqlite3, _aux: *mut (), _args: &[&[u8]]) -> Result<SeriesTab> {
|
||||
let vtab = SeriesTab {
|
||||
base: Default::default(),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user