forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature](selectdb-cloud) Copy into support select by column name (ap…
…ache#1055) * Copy into support select by column name * Fix broker load core dump due to mis-match of number of columns between remote and schema
- Loading branch information
Showing
114 changed files
with
1,362 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
regression-test/suites/cloud/copy_into_json/ddl/filter_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
CREATE TABLE IF NOT EXISTS filter ( | ||
p_partkey int NOT NULL, | ||
p_name VARCHAR(55) NOT NULL, | ||
p_mfgr VARCHAR(25) NOT NULL, | ||
p_brand VARCHAR(10) NOT NULL, | ||
p_type VARCHAR(25) NOT NULL, | ||
p_size int NOT NULL, | ||
p_container VARCHAR(10) NOT NULL, | ||
p_retailprice decimal(15, 2) NOT NULL, | ||
p_comment VARCHAR(23) NOT NULL | ||
)ENGINE=OLAP | ||
DUPLICATE KEY(`p_partkey`) | ||
COMMENT "OLAP" | ||
DISTRIBUTED BY HASH(`p_partkey`) BUCKETS 24; |
1 change: 1 addition & 0 deletions
1
regression-test/suites/cloud/copy_into_json/ddl/filter_drop.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS filter; |
18 changes: 18 additions & 0 deletions
18
regression-test/suites/cloud/copy_into_json/ddl/null_default_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
CREATE TABLE IF NOT EXISTS null_default ( | ||
p_partkey int NOT NULL, | ||
p_name VARCHAR(55) NOT NULL, | ||
p_mfgr VARCHAR(25) NOT NULL, | ||
p_brand VARCHAR(10) NOT NULL, | ||
p_type VARCHAR(25) NOT NULL, | ||
p_size int NOT NULL, | ||
p_container VARCHAR(10) NOT NULL, | ||
p_retailprice decimal(15, 2) NOT NULL, | ||
p_comment VARCHAR(23) NOT NULL, | ||
p_add_col1 varchar(5) null, | ||
p_add_col2 int null, | ||
p_add_col3 int null default '100', | ||
p_add_col4 varchar(5) null default 'abc' | ||
)ENGINE=OLAP | ||
DUPLICATE KEY(`p_partkey`) | ||
COMMENT "OLAP" | ||
DISTRIBUTED BY HASH(`p_partkey`) BUCKETS 24; |
1 change: 1 addition & 0 deletions
1
regression-test/suites/cloud/copy_into_json/ddl/null_default_drop.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS null_default; |
12 changes: 12 additions & 0 deletions
12
regression-test/suites/cloud/copy_into_json/ddl/part_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
CREATE TABLE IF NOT EXISTS part ( | ||
`p_partkey` integer NOT NULL, | ||
`p_name` varchar(55) NOT NULL, | ||
`p_mfgr` char(25) NOT NULL, | ||
`p_brand` char(10) NOT NULL, | ||
`p_type` varchar(25) NOT NULL, | ||
`p_size` integer NOT NULL, | ||
`p_container` char(10) NOT NULL, | ||
`p_retailprice` double NOT NULL, | ||
`p_comment` varchar(23) NOT NULL | ||
)ENGINE=OLAP | ||
DISTRIBUTED BY HASH(p_partkey) BUCKETS 24; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS part; |
12 changes: 12 additions & 0 deletions
12
regression-test/suites/cloud/copy_into_json/ddl/reverse_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
CREATE TABLE IF NOT EXISTS reverse ( | ||
`comment` varchar(23) NOT NULL, | ||
`retailprice` decimal(12, 2) NOT NULL, | ||
`container` char(10) NOT NULL, | ||
`size` integer NOT NULL, | ||
`type` varchar(25) NOT NULL, | ||
`brand` char(10) NOT NULL, | ||
`mfgr` char(25) NOT NULL, | ||
`name` varchar(55) NOT NULL, | ||
`partkey` integer NOT NULL | ||
)ENGINE=OLAP | ||
DISTRIBUTED BY HASH(partkey) BUCKETS 24; |
1 change: 1 addition & 0 deletions
1
regression-test/suites/cloud/copy_into_json/ddl/reverse_drop.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS reverse; |
15 changes: 15 additions & 0 deletions
15
regression-test/suites/cloud/copy_into_json/ddl/s3_case1_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
CREATE TABLE s3_case1 ( | ||
p_partkey int NOT NULL DEFAULT "1", | ||
p_name VARCHAR(55) NOT NULL DEFAULT "2", | ||
p_mfgr VARCHAR(25) NOT NULL DEFAULT "3", | ||
p_brand VARCHAR(10) NOT NULL DEFAULT "4", | ||
p_type VARCHAR(25) NOT NULL DEFAULT "5", | ||
p_size int NOT NULL DEFAULT "6", | ||
p_container VARCHAR(10) NOT NULL DEFAULT "7", | ||
p_retailprice decimal(15, 2) NOT NULL DEFAULT "8", | ||
p_comment VARCHAR(23) NOT NULL DEFAULT "9", | ||
col1 int not null default "10" | ||
)ENGINE=OLAP | ||
DUPLICATE KEY(`p_partkey`) | ||
COMMENT "OLAP" | ||
DISTRIBUTED BY HASH(`p_partkey`) BUCKETS 3; |
1 change: 1 addition & 0 deletions
1
regression-test/suites/cloud/copy_into_json/ddl/s3_case1_drop.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS s3_case1; |
15 changes: 15 additions & 0 deletions
15
regression-test/suites/cloud/copy_into_json/ddl/s3_case2_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
CREATE TABLE s3_case2 ( | ||
p_partkey int NOT NULL DEFAULT "1", | ||
p_name VARCHAR(55) NOT NULL DEFAULT "2", | ||
p_mfgr VARCHAR(25) NOT NULL DEFAULT "3", | ||
p_brand VARCHAR(10) NOT NULL DEFAULT "4", | ||
p_type VARCHAR(25) NOT NULL DEFAULT "5", | ||
p_size int NOT NULL DEFAULT "6", | ||
p_container VARCHAR(10) NOT NULL DEFAULT "7", | ||
p_retailprice decimal(15, 2) NOT NULL DEFAULT "8", | ||
p_comment VARCHAR(23) NOT NULL DEFAULT "9", | ||
col1 int not null default "10" | ||
)ENGINE=OLAP | ||
DUPLICATE KEY(`p_partkey`) | ||
COMMENT "OLAP" | ||
DISTRIBUTED BY HASH(`p_partkey`) BUCKETS 3; |
1 change: 1 addition & 0 deletions
1
regression-test/suites/cloud/copy_into_json/ddl/s3_case2_drop.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS s3_case2; |
13 changes: 13 additions & 0 deletions
13
regression-test/suites/cloud/copy_into_json/ddl/s3_case3_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
CREATE TABLE s3_case3 ( | ||
p_partkey int NOT NULL DEFAULT "1", | ||
p_name VARCHAR(55) NOT NULL DEFAULT "2", | ||
p_mfgr VARCHAR(25) NOT NULL DEFAULT "3", | ||
p_brand VARCHAR(10) NOT NULL DEFAULT "4", | ||
p_type VARCHAR(25) NOT NULL DEFAULT "5", | ||
p_size int NOT NULL DEFAULT "6", | ||
p_container VARCHAR(10) NOT NULL DEFAULT "7", | ||
p_retailprice decimal(15, 2) NOT NULL DEFAULT "8" | ||
)ENGINE=OLAP | ||
DUPLICATE KEY(`p_partkey`) | ||
COMMENT "OLAP" | ||
DISTRIBUTED BY HASH(`p_partkey`) BUCKETS 3; |
1 change: 1 addition & 0 deletions
1
regression-test/suites/cloud/copy_into_json/ddl/s3_case3_drop.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS s3_case3; |
9 changes: 9 additions & 0 deletions
9
regression-test/suites/cloud/copy_into_json/ddl/s3_case4_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE s3_case4 ( | ||
col1 int NOT NULL DEFAULT "1", | ||
col2 VARCHAR(55) NOT NULL DEFAULT "2", | ||
col3 VARCHAR(25) NOT NULL DEFAULT "3", | ||
col4 VARCHAR(10) NOT NULL DEFAULT "4" | ||
)ENGINE=OLAP | ||
DUPLICATE KEY(`col1`) | ||
COMMENT "OLAP" | ||
DISTRIBUTED BY HASH(`col1`) BUCKETS 3; |
1 change: 1 addition & 0 deletions
1
regression-test/suites/cloud/copy_into_json/ddl/s3_case4_drop.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS s3_case4; |
9 changes: 9 additions & 0 deletions
9
regression-test/suites/cloud/copy_into_json/ddl/s3_case5_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE s3_case5 ( | ||
p_partkey int NOT NULL DEFAULT "1", | ||
p_name VARCHAR(55) NOT NULL DEFAULT "2", | ||
p_mfgr VARCHAR(25) NOT NULL DEFAULT "3", | ||
col4 VARCHAR(10) NOT NULL DEFAULT "4" | ||
)ENGINE=OLAP | ||
DUPLICATE KEY(`p_partkey`) | ||
COMMENT "OLAP" | ||
DISTRIBUTED BY HASH(`p_partkey`) BUCKETS 3; |
1 change: 1 addition & 0 deletions
1
regression-test/suites/cloud/copy_into_json/ddl/s3_case5_drop.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS s3_case5; |
9 changes: 9 additions & 0 deletions
9
regression-test/suites/cloud/copy_into_json/ddl/s3_case6_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE s3_case6 ( | ||
p_partkey int NOT NULL DEFAULT "1", | ||
p_name VARCHAR(55) NOT NULL DEFAULT "2", | ||
p_mfgr VARCHAR(25) NOT NULL DEFAULT "3", | ||
col4 VARCHAR(10) NOT NULL DEFAULT "4" | ||
)ENGINE=OLAP | ||
DUPLICATE KEY(`p_partkey`) | ||
COMMENT "OLAP" | ||
DISTRIBUTED BY HASH(`p_partkey`) BUCKETS 3; |
1 change: 1 addition & 0 deletions
1
regression-test/suites/cloud/copy_into_json/ddl/s3_case6_drop.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS s3_case6; |
7 changes: 7 additions & 0 deletions
7
regression-test/suites/cloud/copy_into_json/ddl/set1_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE IF NOT EXISTS set1 ( | ||
`p_partkey` integer NOT NULL default '0', | ||
`p_name` varchar(55) NOT NULL default 'aaa', | ||
`p_size` integer NOT NULL default '0', | ||
`p_greatest` integer NOT NULL | ||
)ENGINE=OLAP | ||
DISTRIBUTED BY HASH(p_partkey) BUCKETS 24; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS set1; |
4 changes: 4 additions & 0 deletions
4
regression-test/suites/cloud/copy_into_json/ddl/set2_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CREATE TABLE IF NOT EXISTS set2 ( | ||
`p_partkey` integer NOT NULL default '0' | ||
)ENGINE=OLAP | ||
DISTRIBUTED BY HASH(p_partkey) BUCKETS 24; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS set2; |
4 changes: 4 additions & 0 deletions
4
regression-test/suites/cloud/copy_into_json/ddl/set3_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CREATE TABLE IF NOT EXISTS set3 ( | ||
`partkey` integer NOT NULL default '0' | ||
)ENGINE=OLAP | ||
DISTRIBUTED BY HASH(partkey) BUCKETS 24; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS set3; |
4 changes: 4 additions & 0 deletions
4
regression-test/suites/cloud/copy_into_json/ddl/set4_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CREATE TABLE IF NOT EXISTS set4 ( | ||
`partkey` integer NOT NULL default '0' | ||
)ENGINE=OLAP | ||
DISTRIBUTED BY HASH(partkey) BUCKETS 24; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS set4; |
4 changes: 4 additions & 0 deletions
4
regression-test/suites/cloud/copy_into_json/ddl/set5_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CREATE TABLE IF NOT EXISTS set5 ( | ||
`partkey` integer NOT NULL default '0' | ||
)ENGINE=OLAP | ||
DISTRIBUTED BY HASH(partkey) BUCKETS 24; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS set5; |
5 changes: 5 additions & 0 deletions
5
regression-test/suites/cloud/copy_into_json/ddl/set6_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CREATE TABLE IF NOT EXISTS set6 ( | ||
`partkey` integer NOT NULL default '0', | ||
`partsize` integer NOT NULL default '0' | ||
)ENGINE=OLAP | ||
DISTRIBUTED BY HASH(partkey) BUCKETS 24; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS set6; |
5 changes: 5 additions & 0 deletions
5
regression-test/suites/cloud/copy_into_json/ddl/set7_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CREATE TABLE IF NOT EXISTS set7 ( | ||
`p_partkey` integer NOT NULL default '0', | ||
`partsize` integer NOT NULL default '0' | ||
)ENGINE=OLAP | ||
DISTRIBUTED BY HASH(p_partkey) BUCKETS 24; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS set7; |
12 changes: 12 additions & 0 deletions
12
regression-test/suites/cloud/copy_into_json/ddl/upper_case_create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
CREATE TABLE IF NOT EXISTS upper_case ( | ||
`P_PARTKEY` integer NOT NULL, | ||
`P_NAME` varchar(55) NOT NULL, | ||
`P_MFGR` char(25) NOT NULL, | ||
`P_BRAND` char(10) NOT NULL, | ||
`P_TYPE` varchar(25) NOT NULL, | ||
`P_SIZE` integer NOT NULL, | ||
`P_CONTAINER` char(10) NOT NULL, | ||
`P_RETAILPRICE` decimal(12, 2) NOT NULL, | ||
`P_COMMENT` varchar(23) NOT NULL | ||
)ENGINE=OLAP | ||
DISTRIBUTED BY HASH(p_partkey) BUCKETS 24; |
1 change: 1 addition & 0 deletions
1
regression-test/suites/cloud/copy_into_json/ddl/upper_case_drop.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE IF EXISTS upper_case; |
Oops, something went wrong.