mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
fix 00980_shard_aggregation_state_deserialization.sql
This commit is contained in:
parent
fb5c11146a
commit
fd0947899d
@ -1669,7 +1669,7 @@ private:
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
WrapperType createAggregateFunctionWrapper(const DataTypePtr & from_type_untyped, const DataTypeAggregateFunction * to_type) const
|
||||
{
|
||||
/// Conversion from String through parsing.
|
||||
|
@ -1,6 +1,8 @@
|
||||
DROP TABLE IF EXISTS numbers500k;
|
||||
CREATE VIEW numbers500k AS SELECT number FROM system.numbers LIMIT 500000;
|
||||
|
||||
SET max_query_size = 1073741824;
|
||||
|
||||
SELECT count(*) FROM remote('127.0.0.{2,3}', currentDatabase(), numbers500k) WHERE bitmapContains((SELECT groupBitmapState(number) FROM numbers500k), toUInt32(number));
|
||||
|
||||
DROP TABLE numbers500k;
|
||||
|
Loading…
Reference in New Issue
Block a user