From eab7b7e2a37aa127ff87152e226dbbc897a38748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Sun, 17 Sep 2017 11:55:12 +0300 Subject: [PATCH] Remove call to qc_sqlite_thread_end in qc_sqlite_process_end Since the thread initialization was removed from the process initialization function, the thread finish function should not be called in the process finish function. --- query_classifier/qc_sqlite/qc_sqlite.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/query_classifier/qc_sqlite/qc_sqlite.cc b/query_classifier/qc_sqlite/qc_sqlite.cc index ff0a2d4ca..a984b1286 100644 --- a/query_classifier/qc_sqlite/qc_sqlite.cc +++ b/query_classifier/qc_sqlite/qc_sqlite.cc @@ -4453,8 +4453,6 @@ static void qc_sqlite_process_end(void) finish_builtin_functions(); - qc_sqlite_thread_end(); - sqlite3_shutdown(); this_unit.initialized = false; }