ClickHouse/tests/queries/0_stateless/01472_many_rows_in_totals.reference

71 lines
785 B
Plaintext
Raw Normal View History

2020-09-04 16:32:51 +00:00
┏━━━┳━━━┓
g ┃ s ┃
┡━━━╇━━━┩
│ 0 │ 2 │
├───┼───┤
│ 0 │ 2 │
├───┼───┤
│ 1 │ 4 │
├───┼───┤
│ 1 │ 4 │
└───┴───┘
Totals:
┏━━━┳━━━┓
g ┃ s ┃
┡━━━╇━━━┩
│ 0 │ 6 │
└───┴───┘
--
0 2
0 2
1 4
1 4
0 6
--
{
"meta":
[
{
"name": "g",
"type": "UInt64"
},
{
"name": "s",
"type": "UInt64"
}
],
"data":
[
{
"g": "0",
"s": "2"
},
{
"g": "0",
"s": "2"
},
{
"g": "1",
"s": "4"
},
{
"g": "1",
"s": "4"
}
],
"totals":
{
"g": "0",
"s": "6"
},
"rows": 4,
"rows_before_limit_at_least": 4
}
--