Skip to content

Commit

Permalink
definitely deterministic
Browse files Browse the repository at this point in the history
Signed-off-by: xxchan <[email protected]>
  • Loading branch information
xxchan committed Jun 26, 2024
1 parent 07c220d commit 39eb924
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions e2e_test/source_inline/kafka/include_key_as.slt
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,12 @@ WHERE key_col IS NOT NULL


query ??
WITH arr AS (SELECT header_col_combined FROM additional_columns order by 1 limit 1)
SELECT unnest(header_col_combined) FROM arr;
WITH arr AS (SELECT header_col_combined FROM additional_columns),
unnested AS (SELECT unnest(header_col_combined) FROM arr)
select *, count(*) from unnested group by 1;
----
(header1,"\\x7631")
(header2,"\\x7632")
(header1,"\\x7631") 101
(header2,"\\x7632") 101

query ????
select header_col_1, header_col_2, header_col_3, header_col_4 from additional_columns limit 1
Expand Down

0 comments on commit 39eb924

Please sign in to comment.