From 9965f5e357f1be610608a51dc7a41f89c2321275 Mon Sep 17 00:00:00 2001 From: Nikolai Kochetov Date: Thu, 25 Jan 2018 18:57:07 +0300 Subject: [PATCH] swap source and last_exception in StorageSystemDictionaries --- dbms/src/Storages/System/StorageSystemDictionaries.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbms/src/Storages/System/StorageSystemDictionaries.cpp b/dbms/src/Storages/System/StorageSystemDictionaries.cpp index ada86426ddd..2ef9a8c4db6 100644 --- a/dbms/src/Storages/System/StorageSystemDictionaries.cpp +++ b/dbms/src/Storages/System/StorageSystemDictionaries.cpp @@ -33,8 +33,8 @@ StorageSystemDictionaries::StorageSystemDictionaries(const std::string & name) { "element_count", std::make_shared() }, { "load_factor", std::make_shared() }, { "creation_time", std::make_shared() }, - { "last_exception", std::make_shared() }, - { "source", std::make_shared() } + { "source", std::make_shared() }, + { "last_exception", std::make_shared() } } { }