From 632dd1ee7511d0a2f7640bf11156c01ba4daa4e8 Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Thu, 12 May 2022 22:57:23 +0200 Subject: [PATCH] Add placeholder replacement to log housekeeping tasks --- bin/datastore.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/datastore.py b/bin/datastore.py index a7f2223..d51e7f4 100644 --- a/bin/datastore.py +++ b/bin/datastore.py @@ -712,6 +712,10 @@ class Datastore: qry = "CALL augment_event_data();" cur.execute(qry) + + qry = "CALL scan_placeholders();" + cur.execute(qry) + if cursor is None: self.maybe_commit() # We do not commit if we've been passed a cursor, instead