Skip to content

Commit 09c92c8

Browse files
authored
Fix query syntax in group_by.slt test file
1 parent e0cc868 commit 09c92c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

datafusion/sqllogictest/test_files/group_by.slt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5209,7 +5209,7 @@ create table duplicate_grouping_sets(deptno int, job varchar, sal int, comm int)
52095209
(10, 'CLERK', 1300, null),
52105210
(20, 'MANAGER', 3000, null);
52115211

5212-
query IT?I?I?III
5212+
query ITIIIII
52135213
select deptno, job, sal, sum(comm), grouping(deptno), grouping(job), grouping(sal)
52145214
from duplicate_grouping_sets
52155215
group by grouping sets ((deptno, job), (deptno, sal), (deptno, job))

0 commit comments

Comments
 (0)