You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
qt_avg2 "select * from v_test_array_avg order by 1,2,3,4,5,6, 7;"
57
57
58
58
multi_sql """set enable_decimal256=true;
59
-
drop view if EXISTS v_test_array_product;
60
-
create view v_test_array_product as select kint, array_product(a_int), array_product(a_float), array_product(a_double), array_product(a_dec_v3_64), array_product(a_dec_v3_128), array_product(a_dec_v3_256) from test_array_agg_view;"""
61
-
qt_product1 "select * from v_test_array_product order by 1,2,3,4,5,6, 7;"
59
+
drop view if EXISTS v_test_array_product2;
60
+
create view v_test_array_product2 as select kint, array_product(a_int), array_product(a_float), array_product(a_double), array_product(a_dec_v3_64), array_product(a_dec_v3_128), array_product(a_dec_v3_256) from test_array_agg_view;"""
61
+
qt_product1 "select * from v_test_array_product2 order by 1,2,3,4,5,6, 7;"
62
62
sql "set enable_decimal256=false;"
63
-
qt_product2 "select * from v_test_array_product order by 1,2,3,4,5,6, 7;"
63
+
qt_product2 "select * from v_test_array_product2 order by 1,2,3,4,5,6, 7;"
64
64
65
65
sql """set enable_decimal256=true; """
66
66
qt_cum_sum1 "select *, array_cum_sum(a_int), array_cum_sum(a_float), array_cum_sum(a_double), array_cum_sum(a_dec_v3_64), array_cum_sum(a_dec_v3_128), array_cum_sum(a_dec_v3_256) from test_array_agg_view order by 1,2,3,4,5,6, 7;"
0 commit comments