ClickHouse/tests/queries/0_stateless/01472_many_rows_in_totals.reference
Alexey Milovidov be784bb649 Update tests
2024-03-23 03:24:50 +01:00

843 B

┏━━━┳━━━┓
gs
┡━━━╇━━━┩
1. │ 0 │ 2 │
├───┼───┤
2. │ 0 │ 2 │
├───┼───┤
3. │ 1 │ 4 │
├───┼───┤
4. │ 1 │ 4 │
└───┴───┘
 
Totals:
┏━━━┳━━━┓
gs
┡━━━╇━━━┩
1. │ 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
}
--