From 57854230c128b21d572b47c0891c07f2c58a30c3 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Thu, 2 Aug 2012 18:05:06 +0000 Subject: [PATCH] dbms: development [#CONV-2944]. --- dbms/include/DB/Interpreters/Context.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dbms/include/DB/Interpreters/Context.h b/dbms/include/DB/Interpreters/Context.h index 2467384f5b4..debbaad67e5 100644 --- a/dbms/include/DB/Interpreters/Context.h +++ b/dbms/include/DB/Interpreters/Context.h @@ -68,6 +68,8 @@ private: Context * global_context; /// Глобальный контекст или NULL, если его нет. (Возможно, равен this.) public: + Context() : shared(new ContextShared) {} + String getPath() const; void setPath(const String & path);