From b5cab7c721dc7dc1bbaa486ab591753e4af4adfd Mon Sep 17 00:00:00 2001 From: alexey-milovidov Date: Wed, 18 Dec 2019 22:03:57 +0300 Subject: [PATCH] Update KeyCondition.cpp --- dbms/src/Storages/MergeTree/KeyCondition.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/src/Storages/MergeTree/KeyCondition.cpp b/dbms/src/Storages/MergeTree/KeyCondition.cpp index e63fbee5049..394c9d4d291 100644 --- a/dbms/src/Storages/MergeTree/KeyCondition.cpp +++ b/dbms/src/Storages/MergeTree/KeyCondition.cpp @@ -1132,7 +1132,7 @@ bool KeyCondition::mayBeTrueInParallelogram(const std::vector & parallelo } if (rpn_stack.size() != 1) - throw Exception("Unexpected stack size in KeyCondition::mayBeTrueInRange", ErrorCodes::LOGICAL_ERROR); + throw Exception("Unexpected stack size in KeyCondition::mayBeTrueInParallelogram", ErrorCodes::LOGICAL_ERROR); return rpn_stack[0].can_be_true; }