diff options
author | stephan <stephan@noemail.net> | 2022-12-12 18:42:39 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-12-12 18:42:39 +0000 |
commit | 33ce0b3ff34530a47e928fbce053c76db83ab3d2 (patch) | |
tree | 19dea951dedcbcf4be52fb58388870c595f69d10 /ext/wasm/tester1.c-pp.js | |
parent | d8e07c780c55ccd6bfb6f005cafbfdae560bf7e7 (diff) | |
download | sqlite-33ce0b3ff34530a47e928fbce053c76db83ab3d2.tar.gz sqlite-33ce0b3ff34530a47e928fbce053c76db83ab3d2.zip |
Revert part of [9386d6f63468] because the new automatic function pointer binding cannot properly track per-context function mappings when the context is more complex than a single context-type pointer. e.g. it is fine for sqlite3_trace_v2() but it breaks down with sqlite3_create_collation() because that one needs to use the collation name as part of the context key and we cannot sensibly do so with the current code.
FossilOrigin-Name: 6cd21b79075367227b57bccf829cc7d4ccc7d7fbcfaed226b4c8e942ddae4eb6
Diffstat (limited to 'ext/wasm/tester1.c-pp.js')
-rw-r--r-- | ext/wasm/tester1.c-pp.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/tester1.c-pp.js b/ext/wasm/tester1.c-pp.js index 92e8ec052..aa52d6407 100644 --- a/ext/wasm/tester1.c-pp.js +++ b/ext/wasm/tester1.c-pp.js @@ -1788,7 +1788,7 @@ self.sqlite3InitModule = sqlite3InitModule; .assert(args[0] === 'testvtab') .assert(args[1] === 'main') .assert(args[2] === 'testvtab'); - console.debug("xConnect() args =",args); + //console.debug("xConnect() args =",args); const rc = capi.sqlite3_declare_vtab( pDb, "CREATE TABLE ignored(a,b)" ); |