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:
gwenn
2018-05-05 10:33:05 +02:00
parent 30e23cf0a0
commit 702e58f744
4 changed files with 83 additions and 7 deletions

View File

@@ -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,