Fixed error on clang [#CLICKHOUSE-2].

This commit is contained in:
Alexey Milovidov 2017-01-14 12:07:26 +03:00
parent e8d7641316
commit 530796a5f8

View File

@ -393,7 +393,7 @@ public:
}
/// Do not sleep during query analysis.
bool isSuitableForConstantFolding() const { return false; }
bool isSuitableForConstantFolding() const override { return false; }
size_t getNumberOfArguments() const override { return 1; }
@ -802,7 +802,7 @@ public:
}
/// Because of function cannot be executed directly.
bool isSuitableForConstantFolding() const { return false; }
bool isSuitableForConstantFolding() const override { return false; }
};