aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_sqlite.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2018-08-06 01:14:10 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:15 -0400
commit8671dcef8815777bf3fb7d433f57a53dca162a14 (patch)
tree298bc2a5280a8f0ae286564a44da947dc757494e /org/output_sqlite.org
parentnested parallelisation, output task scheduler (diff)
0.27.1 sqlite shared db actions cannot be parallelised
- regressive fix required
Diffstat (limited to 'org/output_sqlite.org')
-rw-r--r--org/output_sqlite.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/org/output_sqlite.org b/org/output_sqlite.org
index 11a853a..49cd3f6 100644
--- a/org/output_sqlite.org
+++ b/org/output_sqlite.org
@@ -282,7 +282,7 @@ template SQLiteDbDrop() {
_db_statement ~= SQLiteDeleteDocument!()(doc_matters);
SQLiteDbRun!()(db, _db_statement, doc_matters.opt.action, "DELETE Document");
}
- if (doc_matters.opt.action.sqlite_insert || doc_matters.opt.action.sqlite_update) { // sqlite_update is .opt.action sqlite_delete & sqlite_insert (set in sdp)
+ if (doc_matters.opt.action.sqlite_update) { // sqlite_update is .opt.action sqlite_delete & sqlite_insert (set in sdp)
_db_statement ~= SQLiteDeleteDocument!()(doc_matters);
SQLiteDbRun!()(db, _db_statement, doc_matters.opt.action, "DELETE Document");
_db_statement ~= SQLiteInsertMetadata!()(doc_matters);