mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Merge pull request #12056 from ClickHouse/fix-11808
Fix defaultValueOfArgumentType
This commit is contained in:
commit
65dae99c12
@ -22,6 +22,7 @@ public:
|
||||
}
|
||||
|
||||
bool useDefaultImplementationForNulls() const override { return false; }
|
||||
bool useDefaultImplementationForLowCardinalityColumns() const override { return false; }
|
||||
|
||||
size_t getNumberOfArguments() const override
|
||||
{
|
||||
|
@ -0,0 +1 @@
|
||||
LowCardinality(String)
|
@ -0,0 +1,4 @@
|
||||
SELECT
|
||||
materialize(toLowCardinality('')) AS lc,
|
||||
toTypeName(lc)
|
||||
WHERE lc = defaultValueOfArgumentType(lc)
|
Loading…
Reference in New Issue
Block a user