Skip to content

Commit 4af682c

Browse files
committed
test
1 parent 9f81ba1 commit 4af682c

1 file changed

Lines changed: 16 additions & 8 deletions

File tree

  • datafusion/physical-plan/src/aggregates

datafusion/physical-plan/src/aggregates/mod.rs

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2209,16 +2209,24 @@ mod tests {
22092209
+---+-----+---------------+-----------------+
22102210
| a | b | __grouping_id | COUNT(1)[count] |
22112211
+---+-----+---------------+-----------------+
2212-
| | 1.0 | 2 | 2 |
2213-
| | 2.0 | 2 | 2 |
2214-
| | 3.0 | 2 | 2 |
2215-
| | 4.0 | 2 | 2 |
2216-
| 2 | | 1 | 2 |
2217-
| 2 | 1.0 | 0 | 2 |
2218-
| 3 | | 1 | 3 |
2212+
| | 1.0 | 2 | 1 |
2213+
| | 1.0 | 2 | 1 |
2214+
| | 2.0 | 2 | 1 |
2215+
| | 2.0 | 2 | 1 |
2216+
| | 3.0 | 2 | 1 |
2217+
| | 3.0 | 2 | 1 |
2218+
| | 4.0 | 2 | 1 |
2219+
| | 4.0 | 2 | 1 |
2220+
| 2 | | 1 | 1 |
2221+
| 2 | | 1 | 1 |
2222+
| 2 | 1.0 | 0 | 1 |
2223+
| 2 | 1.0 | 0 | 1 |
2224+
| 3 | | 1 | 1 |
2225+
| 3 | | 1 | 2 |
22192226
| 3 | 2.0 | 0 | 2 |
22202227
| 3 | 3.0 | 0 | 1 |
2221-
| 4 | | 1 | 3 |
2228+
| 4 | | 1 | 1 |
2229+
| 4 | | 1 | 2 |
22222230
| 4 | 3.0 | 0 | 1 |
22232231
| 4 | 4.0 | 0 | 2 |
22242232
+---+-----+---------------+-----------------+

0 commit comments

Comments
 (0)