Skip to content

Commit

Permalink
fix regression test result order
Browse files Browse the repository at this point in the history
  • Loading branch information
gnehil committed Jun 18, 2024
1 parent d36d774 commit e9257e7
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
14 changes: 7 additions & 7 deletions regression-test/data/load_p0/http_stream/test_http_stream.out
Original file line number Diff line number Diff line change
Expand Up @@ -621,14 +621,14 @@
2 test

-- !sql19 --
koga 1 1
nijg 1 1
lojn 1 1
lofn 1 1
buag 1 1
huang 1 1
jfin 1 1
koga 1 1
kon 1 1
nhga 1 1
lofn 1 1
lojn 1 1
nfubg 1 1
huang 1 1
buag 1 1
nhga 1 1
nijg 1 1

Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@
10010 kk

-- !sql13 --
koga 1 1
nijg 1 1
lojn 1 1
lofn 1 1
buag 1 1
huang 1 1
jfin 1 1
koga 1 1
kon 1 1
nhga 1 1
lofn 1 1
lojn 1 1
nfubg 1 1
huang 1 1
buag 1 1
nhga 1 1
nijg 1 1

Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ suite("test_http_stream", "p0") {
}
}

qt_sql19 "select type_name, hll_union_agg(pv_hash), hll_union_agg(pv_base64) from ${tableName19} group by type_name"
qt_sql19 "select type_name, hll_union_agg(pv_hash), hll_union_agg(pv_base64) from ${tableName19} group by type_name order by type_name"
} finally {
try_sql "DROP TABLE IF EXISTS ${tableName19}"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ suite("test_stream_load_new", "p0") {
type_id int,
type_name varchar(10),
pv_hash hll hll_union not null,
pv_base64 hll hll_union null
pv_base64 hll hll_union not null
)
AGGREGATE KEY(type_id,type_name)
DISTRIBUTED BY HASH(type_id) BUCKETS 1
Expand All @@ -577,7 +577,7 @@ suite("test_stream_load_new", "p0") {
}
}
sql """ sync; """
qt_sql13 "select type_name, hll_union_agg(pv_hash), hll_union_agg(pv_base64) from ${tableName13} group by type_name"
qt_sql13 "select type_name, hll_union_agg(pv_hash), hll_union_agg(pv_base64) from ${tableName13} group by type_name order by type_name"
} finally {
try_sql "DROP TABLE IF EXISTS ${tableName13}"
}
Expand Down

0 comments on commit e9257e7

Please sign in to comment.