mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge pull request #10758 from bgiard/master
Fix serialize/deserialize of denominator of Average functions
This commit is contained in:
commit
e41e998f4a
@ -71,13 +71,13 @@ public:
|
||||
void serialize(ConstAggregateDataPtr place, WriteBuffer & buf) const override
|
||||
{
|
||||
writeBinary(this->data(place).numerator, buf);
|
||||
writeVarUInt(this->data(place).denominator, buf);
|
||||
writeBinary(this->data(place).denominator, buf);
|
||||
}
|
||||
|
||||
void deserialize(AggregateDataPtr place, ReadBuffer & buf, Arena *) const override
|
||||
{
|
||||
readBinary(this->data(place).numerator, buf);
|
||||
readVarUInt(this->data(place).denominator, buf);
|
||||
readBinary(this->data(place).denominator, buf);
|
||||
}
|
||||
|
||||
void insertResultInto(ConstAggregateDataPtr place, IColumn & to) const override
|
||||
|
@ -0,0 +1,6 @@
|
||||
100
|
||||
10
|
||||
0
|
||||
nan
|
||||
nan
|
||||
100
|
9
tests/queries/0_stateless/01268_shard_avgweighted.sql
Normal file
9
tests/queries/0_stateless/01268_shard_avgweighted.sql
Normal file
@ -0,0 +1,9 @@
|
||||
CREATE TABLE dummy(foo Int64) ENGINE = Memory();
|
||||
INSERT INTO dummy VALUES (1);
|
||||
SELECT avgWeighted(100., .1) FROM remote('127.0.0.{2,3}', currentDatabase(), dummy);
|
||||
SELECT avgWeighted(10, 100) FROM remote('127.0.0.{2,3}', currentDatabase(), dummy);
|
||||
SELECT avgWeighted(0, 1) FROM remote('127.0.0.{2,3}', currentDatabase(), dummy);
|
||||
SELECT avgWeighted(0., 0.) FROM remote('127.0.0.{2,3}', currentDatabase(), dummy);
|
||||
SELECT avgWeighted(1., 0.) FROM remote('127.0.0.{2,3}', currentDatabase(), dummy);
|
||||
SELECT avgWeighted(toInt8(100), -1) FROM remote('127.0.0.{2,3}', currentDatabase(), dummy);
|
||||
DROP TABLE dummy;
|
Loading…
Reference in New Issue
Block a user