This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 234e822b36 [Regression](Array) add more array test (#10770) 234e822b36 is described below commit 234e822b368e5e2c0ae2d2e324f02c92c059fccf Author: lihangyu <15605149...@163.com> AuthorDate: Mon Jul 18 15:27:13 2022 +0800 [Regression](Array) add more array test (#10770) --- .../sql_functions/array_functions/sql/q01.out | 68 ++++++++++++++++++++++ .../sql_functions/array_functions/sql/q02.out | 52 +++++++++++++++++ .../sql_functions/array_functions/sql/q01.sql | 23 ++++++++ .../sql_functions/array_functions/sql/q02.sql | 24 ++++++++ 4 files changed, 167 insertions(+) diff --git a/regression-test/data/query/sql_functions/array_functions/sql/q01.out b/regression-test/data/query/sql_functions/array_functions/sql/q01.out new file mode 100644 index 0000000000..fbcb81cb83 --- /dev/null +++ b/regression-test/data/query/sql_functions/array_functions/sql/q01.out @@ -0,0 +1,68 @@ +-- This file is automatically generated. You should know what you did if you want to edit this +-- !q01 -- +0 + +-- !q01_2 -- +0 + +-- !q01_3 -- +0 + +-- !q01_4 -- +0 + +-- !q01_5 -- +6 + +-- !q01_6 -- +12 +\N +13 +11 +\N +\N + +-- !q01_7 -- +0 + +-- !q01_8 -- +0 + +-- !q01_9 -- +5 + +-- !q01_10 -- +12 +\N +11 +\N +\N + +-- !q01_11 -- +0 + +-- !q01_12 -- +0 + +-- !q01_13 -- +6 + +-- !q01_14 -- +Df +\N +ERT +Ab +\N +\N + +-- !q01_15 -- +0 + +-- !q01_16 -- +0 + +-- !q01_17 -- + +-- !q01_18 -- +0 + diff --git a/regression-test/data/query/sql_functions/array_functions/sql/q02.out b/regression-test/data/query/sql_functions/array_functions/sql/q02.out new file mode 100644 index 0000000000..b4df8f5b4c --- /dev/null +++ b/regression-test/data/query/sql_functions/array_functions/sql/q02.out @@ -0,0 +1,52 @@ +-- This file is automatically generated. You should know what you did if you want to edit this +-- !q02 -- +0 + +-- !q02_2 -- +0 + +-- !q02_3 -- +[1, 2] + +-- !q02_4 -- +[1, -8761903601633862942.548033534] + +-- !q02_5 -- +[-1, 2] + +-- !q02_6 -- +[-1, 1000] + +-- !q02_7 -- +[-1, 1000000] + +-- !q02_8 -- +[-1000, 2] + +-- !q02_9 -- +[-1000000, 2] + +-- !q02_10 -- +['Hello', 'world'] + +-- !q02_11 -- +[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 1 [...] + +-- !q02_12 -- +[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 1 [...] + +-- !q02_13 -- +[0] + +-- !q02_14 -- +[0] + +-- !q02_15 -- +[0] + +-- !q02_16 -- +[0] + +-- !q02_17 -- +[0] + diff --git a/regression-test/suites/query/sql_functions/array_functions/sql/q01.sql b/regression-test/suites/query/sql_functions/array_functions/sql/q01.sql new file mode 100644 index 0000000000..c8122195f3 --- /dev/null +++ b/regression-test/suites/query/sql_functions/array_functions/sql/q01.sql @@ -0,0 +1,23 @@ +set enable_array_type = true; +set enable_vectorized_engine=true; +DROP TABLE IF EXISTS array_element_test; +CREATE TABLE array_element_test (x int, arr array<int>, id int) ENGINE = Olap DUPLICATE KEY(x) DISTRIBUTED BY HASH(x) BUCKETS 1 PROPERTIES("replication_num" = "1");; +insert into array_element_test VALUES (1, [11,12,13], 2), (2, [11,12], 3), (3, [11,12,13], -1), (4, [11,12], -2), (5, [11,12], -3), (6, [11], 0); +select arr[id] from array_element_test; + +DROP TABLE IF EXISTS array_element_test; +CREATE TABLE array_element_test (x int, arr array<int>, id int) ENGINE = Olap DUPLICATE KEY(x) DISTRIBUTED BY HASH(x) BUCKETS 1 PROPERTIES("replication_num" = "1");; +insert into array_element_test VALUES (1, [11,12,13], 2), (2, [11,12], 3), (3, [11,12,13], 1), (4, [11,12], 4), (5, [11], 0); +select arr[id] from array_element_test; + +DROP TABLE IF EXISTS array_element_test; +CREATE TABLE array_element_test (x int, arr array<string>, id int) ENGINE = Olap DUPLICATE KEY(x) DISTRIBUTED BY HASH(x) BUCKETS 1 PROPERTIES("replication_num" = "1");; +insert into array_element_test VALUES (1, ['Abc','Df','Q'], 2), (2, ['Abc','DEFQ'], 3), (3, ['ABC','Q','ERT'], -1), (4, ['Ab','ber'], -2), (5, ['AB','asd'], -3), (6, ['A'], 0); +select arr[id] from array_element_test; + +DROP TABLE IF EXISTS array_element_test; +CREATE TABLE array_element_test (x int, arr array<string>, id int) ENGINE = Olap DUPLICATE KEY(x) DISTRIBUTED BY HASH(x) BUCKETS 1 PROPERTIES("replication_num" = "1");; +select arr[id] from array_element_test; + +DROP TABLE array_element_test; + diff --git a/regression-test/suites/query/sql_functions/array_functions/sql/q02.sql b/regression-test/suites/query/sql_functions/array_functions/sql/q02.sql new file mode 100644 index 0000000000..41677f4b5c --- /dev/null +++ b/regression-test/suites/query/sql_functions/array_functions/sql/q02.sql @@ -0,0 +1,24 @@ +set enable_array_type = true; +set enable_vectorized_engine=true; +SELECT [1, 2]; +SELECT [1.0, 2]; +SELECT [-1, 2]; +SELECT [-1, 1000]; +SELECT [-1, 1000000]; +SELECT [-1000, 2]; +SELECT [-1000000, 2]; +SELECT ['Hello', 'world']; + +SELECT [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,14 [...] + +SELECT [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,14 [...] + +SELECT [0]; +SELECT [0 ]; +SELECT [ 0]; +SELECT [ 0 ]; +SELECT +[ + 0 +]; + --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org