Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion be/src/common/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,6 @@ DECLARE_Int32(min_s3_file_system_thread_num);
DECLARE_Int32(max_s3_file_system_thread_num);

DECLARE_Bool(enable_time_lut);
DECLARE_mBool(enable_simdjson_reader);

DECLARE_mBool(enable_query_like_bloom_filter);
// number of s3 scanner thread pool size
Expand Down
3,718 changes: 1,862 additions & 1,856 deletions regression-test/data/load_p2/routine_load/test_routine_load.out

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,6 @@ suite("test_json_load", "p0,nonConcurrent") {
try_sql("DROP TABLE IF EXISTS ${testTable}")
}

// case25: import json with enable_simdjson_reader=false
try {
sql "DROP TABLE IF EXISTS ${testTable}"

Expand All @@ -696,7 +695,6 @@ suite("test_json_load", "p0,nonConcurrent") {
}
}

// case26: import json with enable_simdjson_reader=false
try {
sql "DROP TABLE IF EXISTS ${testTable}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ CREATE TABLE routine_load_agg_tbl_basic
k07 LARGEINT SUM NULL,
k08 FLOAT SUM NULL,
k09 DOUBLE SUM NULL,
k10 DECIMAL(9,1) SUM NULL,
k11 DECIMALV3(9,1) SUM NULL,
k10 DECIMAL(10,1) SUM NULL,
k11 DECIMALV3(10,1) SUM NULL,
k12 DATETIME REPLACE NULL,
k13 DATEV2 REPLACE NULL,
k14 DATETIMEV2 REPLACE NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ CREATE TABLE routine_load_dup_tbl_basic
k07 LARGEINT NULL,
k08 FLOAT NULL,
k09 DOUBLE NULL,
k10 DECIMAL(9,1) NULL,
k11 DECIMALV3(9,1) NULL,
k10 DECIMAL(10,1) NULL,
k11 DECIMALV3(10,1) NULL,
k12 DATETIME NULL,
k13 DATEV2 NULL,
k14 DATETIMEV2 NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ CREATE TABLE routine_load_dup_tbl_basic_multi_table
k07 LARGEINT NULL,
k08 FLOAT NULL,
k09 DOUBLE NULL,
k10 DECIMAL(9,1) NULL,
k11 DECIMALV3(9,1) NULL,
k10 DECIMAL(10,1) NULL,
k11 DECIMALV3(10,1) NULL,
k12 DATETIME NULL,
k13 DATEV2 NULL,
k14 DATETIMEV2 NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ CREATE TABLE routine_load_mow_tbl_basic
k07 LARGEINT NULL,
k08 FLOAT NULL,
k09 DOUBLE NULL,
k10 DECIMAL(9,1) NULL,
k11 DECIMALV3(9,1) NULL,
k10 DECIMAL(10,1) NULL,
k11 DECIMALV3(10,1) NULL,
k12 DATETIME NULL,
k13 DATEV2 NULL,
k14 DATETIMEV2 NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ CREATE TABLE routine_load_uniq_tbl_basic
k07 LARGEINT NULL,
k08 FLOAT NULL,
k09 DOUBLE NULL,
k10 DECIMAL(9,1) NULL,
k11 DECIMALV3(9,1) NULL,
k10 DECIMAL(10,1) NULL,
k11 DECIMALV3(10,1) NULL,
k12 DATETIME NULL,
k13 DATEV2 NULL,
k14 DATETIMEV2 NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ CREATE TABLE routine_load_uniq_tbl_basic_sequence
k07 LARGEINT NULL,
k08 FLOAT NULL,
k09 DOUBLE NULL,
k10 DECIMAL(9,1) NULL,
k11 DECIMALV3(9,1) NULL,
k10 DECIMAL(10,1) NULL,
k11 DECIMALV3(10,1) NULL,
k12 DATETIME NULL,
k13 DATEV2 NULL,
k14 DATETIMEV2 NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,7 @@ suite("test_routine_load_p2","p2,nonConcurrent") {
sql "sync"
}catch (Exception e) {
log.info("create routine load failed: ${e.getMessage()}")
assertEquals(e.getMessage(), "errCode = 2, detailMessage = Format type is invalid. format=`test`")
assertEquals(e.getMessage(), "errCode = 2, detailMessage = format:test is not supported.")
}
i++
}
Expand Down Expand Up @@ -1416,8 +1416,6 @@ suite("test_routine_load_p2","p2,nonConcurrent") {
}

try {
set_be_param.call("enable_simdjson_reader", "false")

for (String tableName in tables) {
sql new File("""${context.file.parent}/ddl/${tableName}_drop.sql""").text
sql new File("""${context.file.parent}/ddl/${tableName}_create.sql""").text
Expand Down Expand Up @@ -1489,7 +1487,6 @@ suite("test_routine_load_p2","p2,nonConcurrent") {
i++
}
} finally {
set_be_param.call("enable_simdjson_reader", "true")
for (String tableName in tables) {
sql new File("""${context.file.parent}/ddl/${tableName}_drop.sql""").text
}
Expand Down
Loading