@@ -4614,7 +4614,7 @@ CREATE TABLE int8_dict AS VALUES
46144614(1, arrow_cast('A', 'Dictionary(Int8, Utf8)'));
46154615
46164616# Group by the non-dict column
4617- query ?I rowsort
4617+ query TI rowsort
46184618SELECT column2, count(column1) FROM int8_dict GROUP BY column2;
46194619----
46204620A 4
@@ -4652,7 +4652,7 @@ CREATE TABLE int16_dict AS VALUES
46524652(1, arrow_cast('A', 'Dictionary(Int16, Utf8)'));
46534653
46544654# Group by the non-dict column
4655- query ?I rowsort
4655+ query TI rowsort
46564656SELECT column2, count(column1) FROM int16_dict GROUP BY column2;
46574657----
46584658A 4
@@ -4690,7 +4690,7 @@ CREATE TABLE int32_dict AS VALUES
46904690(1, arrow_cast('A', 'Dictionary(Int32, Utf8)'));
46914691
46924692# Group by the non-dict column
4693- query ?I rowsort
4693+ query TI rowsort
46944694SELECT column2, count(column1) FROM int32_dict GROUP BY column2;
46954695----
46964696A 4
@@ -4728,7 +4728,7 @@ CREATE TABLE int64_dict AS VALUES
47284728(1, arrow_cast('A', 'Dictionary(Int64, Utf8)'));
47294729
47304730# Group by the non-dict column
4731- query ?I rowsort
4731+ query TI rowsort
47324732SELECT column2, count(column1) FROM int64_dict GROUP BY column2;
47334733----
47344734A 4
@@ -4766,7 +4766,7 @@ CREATE TABLE uint8_dict AS VALUES
47664766(1, arrow_cast('A', 'Dictionary(UInt8, Utf8)'));
47674767
47684768# Group by the non-dict column
4769- query ?I rowsort
4769+ query TI rowsort
47704770SELECT column2, count(column1) FROM uint8_dict GROUP BY column2;
47714771----
47724772A 4
@@ -4804,7 +4804,7 @@ CREATE TABLE uint16_dict AS VALUES
48044804(1, arrow_cast('A', 'Dictionary(UInt16, Utf8)'));
48054805
48064806# Group by the non-dict column
4807- query ?I rowsort
4807+ query TI rowsort
48084808SELECT column2, count(column1) FROM uint16_dict GROUP BY column2;
48094809----
48104810A 4
@@ -4842,7 +4842,7 @@ CREATE TABLE uint32_dict AS VALUES
48424842(1, arrow_cast('A', 'Dictionary(UInt32, Utf8)'));
48434843
48444844# Group by the non-dict column
4845- query ?I rowsort
4845+ query TI rowsort
48464846SELECT column2, count(column1) FROM uint32_dict GROUP BY column2;
48474847----
48484848A 4
@@ -4880,7 +4880,7 @@ CREATE TABLE uint64_dict AS VALUES
48804880(1, arrow_cast('A', 'Dictionary(UInt64, Utf8)'));
48814881
48824882# Group by the non-dict column
4883- query ?I rowsort
4883+ query TI rowsort
48844884SELECT column2, count(column1) FROM uint64_dict GROUP BY column2;
48854885----
48864886A 4
0 commit comments