From 35b31f1b21cb1b49a58eead186ff8a1494ed8c42 Mon Sep 17 00:00:00 2001 From: Alexander Tokmakov Date: Fri, 2 Dec 2022 15:00:49 +0300 Subject: [PATCH] Update Context.h --- src/Interpreters/Context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Interpreters/Context.h b/src/Interpreters/Context.h index 74ed8a9bef9..1da78d9b786 100644 --- a/src/Interpreters/Context.h +++ b/src/Interpreters/Context.h @@ -631,7 +631,7 @@ public: void setCurrentDatabaseNameInGlobalContext(const String & name); void setCurrentQueryId(const String & query_id); - void killCurrentQuery(); + void killCurrentQuery() const; bool hasInsertionTable() const { return !insertion_table.empty(); } void setInsertionTable(StorageID db_and_table) { insertion_table = std::move(db_and_table); }