fix 00980_shard_aggregation_state_deserialization.sql

This commit is contained in:
Zhichang Yu 2019-09-03 22:36:17 +08:00
parent fb5c11146a
commit fd0947899d
2 changed files with 3 additions and 1 deletions

View File

@ -1669,7 +1669,7 @@ private:
}
};
}
WrapperType createAggregateFunctionWrapper(const DataTypePtr & from_type_untyped, const DataTypeAggregateFunction * to_type) const
{
/// Conversion from String through parsing.

View File

@ -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;