Skip to content

Commit

Permalink
[fix](regression)fix glue regression (apache#17952)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsjz authored Mar 23, 2023
1 parent c1bd5b2 commit 678314d
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
21843

-- !q02 --
1809714008
1979816070
2147483647
2147483647
2147483647
622370
2239950
2311440
2721973
2736350

-- !q03 --
\N
Expand All @@ -21,11 +21,11 @@
\N

-- !q04 --
1604.7639
1583.2013
1031.6219
1295.7802
182.5588
66.6566
66.8626
66.9046
67.0202
67.7351

-- !q05 --
1937.7762425702406
Expand Down Expand Up @@ -57,32 +57,32 @@
2023-03-07 20:35

-- !q07 --
6f77a7baae184d
88
fbbf69fc81374
f14889
33d471ce
6f77a7baae184d
88
fbbf69fc81374
f14889
33d471ce

-- !q08 --
c2b69a82f074e4f
81b1152fa774b8
73df8eaccf
2ed59df3c824dc78b
5e3e98e07e
000e888
001cdb810
00709e
007bfcf60a24445
0082f975744410

-- !q09 --
dfaac2a43
28c5f21b8
a20faeee91e34ce
b5e6bf2b5
8bc56e
00
00
00
000e642c1c7444ec8329a
001704a395d

-- !q10 --
true
true
false
false
false
66.6566 false
66.8626 true
66.9046 true
67.0202 true
67.7351 false

-- !q11 --
54078 8184
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ suite("test_external_catalog_glue_table", "p2") {
sql """switch test_external_catalog_glue;"""
def q01 = {
qt_q01 """ select glue_int from iceberg_glue_types order by glue_int limit 5 """
qt_q02 """ select glue_bigint from iceberg_glue_types order by glue_int limit 5 """
qt_q02 """ select glue_bigint from iceberg_glue_types order by glue_bigint limit 5 """
qt_q03 """ select glue_smallint from iceberg_glue_types order by glue_int limit 5 """
qt_q04 """ select glue_decimal from iceberg_glue_types order by glue_int limit 5 """
qt_q04 """ select glue_decimal from iceberg_glue_types order by glue_decimal limit 5 """
qt_q05 """ select glue_double from iceberg_glue_types order by glue_int limit 5 """
qt_q06 """ select glue_timstamp from iceberg_glue_types order by glue_timstamp limit 20 """
qt_q07 """ select glue_char from iceberg_glue_types order by glue_int limit 5 """
qt_q08 """ select glue_varchar from iceberg_glue_types order by glue_int limit 5 """
qt_q09 """ select glue_string from iceberg_glue_types order by glue_int limit 5 """
qt_q10 """ select glue_bool from iceberg_glue_types order by glue_int limit 5 """
qt_q08 """ select glue_varchar from iceberg_glue_types order by glue_varchar limit 5 """
qt_q09 """ select glue_string from iceberg_glue_types order by glue_string limit 5 """
qt_q10 """ select glue_decimal, glue_bool from iceberg_glue_types order by glue_decimal limit 5 """
qt_q11 """ select glue_int,glue_smallint from iceberg_glue_types where glue_int > 2000 and glue_smallint < 10000 order by glue_int limit 10 """
qt_q12 """ select glue_smallint from iceberg_glue_types where glue_smallint is null order by glue_smallint limit 3 """
qt_q13 """ select glue_smallint from iceberg_glue_types where glue_smallint is not null order by glue_smallint limit 10 """
Expand Down

0 comments on commit 678314d

Please sign in to comment.