mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
Try fix tests.
This commit is contained in:
parent
83d420e608
commit
34ce5bec48
@ -70,7 +70,11 @@ public:
|
||||
return std::make_shared<DataTypeUInt8>();
|
||||
}
|
||||
|
||||
bool useDefaultImplementationForConstants() const override { return true; }
|
||||
bool useDefaultImplementationForConstants() const override
|
||||
{
|
||||
/// Never return constant for -IgnoreSet functions to avoid constant folding.
|
||||
return !ignore_set;
|
||||
}
|
||||
|
||||
bool useDefaultImplementationForNulls() const override { return null_is_skipped; }
|
||||
|
||||
|
@ -207,7 +207,6 @@ SRCS(
|
||||
ifNull.cpp
|
||||
IFunction.cpp
|
||||
ignore.cpp
|
||||
ignoreExceptNull.cpp
|
||||
in.cpp
|
||||
intDiv.cpp
|
||||
intDivOrZero.cpp
|
||||
|
Loading…
Reference in New Issue
Block a user