mirror of
https://github.com/isar/rusqlite.git
synced 2025-10-19 06:18:56 +08:00
Fix non-eponymous virtual table declaration
Ensure that xCreate is different from xConnect for non-eponymous virtual tables (even when the implementation is the same).
This commit is contained in:
@@ -20,11 +20,11 @@ pub fn load_module(conn: &Connection) -> Result<()> {
|
||||
init_module!(CSV_MODULE,
|
||||
CSVTab,
|
||||
CSVTabCursor,
|
||||
Some(csv_connect),
|
||||
csv_create,
|
||||
csv_connect,
|
||||
csv_best_index,
|
||||
csv_disconnect,
|
||||
Some(csv_disconnect),
|
||||
csv_disconnect,
|
||||
csv_open,
|
||||
csv_close,
|
||||
csv_filter,
|
||||
|
Reference in New Issue
Block a user