diff options
author | stephan <stephan@noemail.net> | 2023-01-27 05:14:34 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2023-01-27 05:14:34 +0000 |
commit | c64a3fa6c626aa56809592cd8f4fcef21d3300ad (patch) | |
tree | 943b10eb8c02e092994a437e6ef5add01916efc2 /ext/wasm/api/sqlite3-api-worker1.js | |
parent | a0013fbe879fb59843c69610af56b5b9141c9614 (diff) | |
download | sqlite-c64a3fa6c626aa56809592cd8f4fcef21d3300ad.tar.gz sqlite-c64a3fa6c626aa56809592cd8f4fcef21d3300ad.zip |
Work around upstream emscripten 3.1.31 bug [https://github.com/emscripten-core/emscripten/issues/18609].
FossilOrigin-Name: fa784101775b795077a23c211b5b16f51ad5a13967c284511f310dfcbfa9f77a
Diffstat (limited to 'ext/wasm/api/sqlite3-api-worker1.js')
-rw-r--r-- | ext/wasm/api/sqlite3-api-worker1.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/wasm/api/sqlite3-api-worker1.js b/ext/wasm/api/sqlite3-api-worker1.js index 250b6fcdf..58b9b0091 100644 --- a/ext/wasm/api/sqlite3-api-worker1.js +++ b/ext/wasm/api/sqlite3-api-worker1.js @@ -1,4 +1,4 @@ -/* +/** 2022-07-22 The author disclaims copyright to this source code. In place of a @@ -10,12 +10,12 @@ *********************************************************************** - This file implements the initializer for the sqlite3 "Worker API - #1", a very basic DB access API intended to be scripted from a main - window thread via Worker-style messages. Because of limitations in - that type of communication, this API is minimalistic and only - capable of serving relatively basic DB requests (e.g. it cannot - process nested query loops concurrently). + This file implements the initializer for SQLite's "Worker API #1", a + very basic DB access API intended to be scripted from a main window + thread via Worker-style messages. Because of limitations in that + type of communication, this API is minimalistic and only capable of + serving relatively basic DB requests (e.g. it cannot process nested + query loops concurrently). This file requires that the core C-style sqlite3 API and OO API #1 have been loaded. |