Skip to content

Commit

Permalink
[fix](case) Increase the timeout period for stream load
Browse files Browse the repository at this point in the history
  • Loading branch information
liaoxin01 committed Jan 14, 2025
1 parent 9a324bc commit 95419e3
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/actions/ccache-action
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ suite("test_dup_table_auto_inc_start_value_basic") {
set 'columns', 'name, value'

file 'auto_inc_basic.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql " sync "
qt_auto_inc_ids "select * from ${table1};"
Expand Down Expand Up @@ -76,7 +76,7 @@ suite("test_dup_table_auto_inc_start_value_basic") {
set 'columns', 'name, value'

file 'auto_inc_basic.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql " sync "
qt_auto_inc_ids "select * from ${table2} order by id;"
Expand Down Expand Up @@ -108,7 +108,7 @@ suite("test_dup_table_auto_inc_start_value_basic") {
set 'columns', 'name, value'

file 'auto_inc_basic.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql " sync "
qt_auto_inc_ids "select * from ${table3};"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ suite("test_dup_table_auto_inc_start_value_with_null") {
set 'columns', 'id, name, value'

file 'auto_inc_basic_with_null.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql """sync"""
qt_auto_inc_ids "select * from ${table1};"
Expand Down Expand Up @@ -76,7 +76,7 @@ suite("test_dup_table_auto_inc_start_value_with_null") {
set 'columns', 'id, name, value'

file 'auto_inc_basic_with_null_2.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql """sync"""
qt_auto_inc_ids "select * from ${table2};"
Expand Down Expand Up @@ -109,7 +109,7 @@ suite("test_dup_table_auto_inc_start_value_with_null") {
set 'columns', 'id, name, value'

file 'auto_inc_basic_with_null.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql """sync"""
qt_auto_inc_ids "select * from ${table3} order by id;"
Expand Down Expand Up @@ -142,7 +142,7 @@ suite("test_dup_table_auto_inc_start_value_with_null") {
set 'columns', 'id, name, value'

file 'auto_inc_basic_with_null_2.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql """sync"""
qt_auto_inc_ids "select * from ${table4} order by id;"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ suite("test_dup_table_auto_inc_basic_with_null") {
set 'columns', 'id, name, value'

file 'auto_inc_basic_with_null.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql """sync"""
qt_auto_inc_ids "select * from ${table1};"
Expand Down Expand Up @@ -76,7 +76,7 @@ suite("test_dup_table_auto_inc_basic_with_null") {
set 'columns', 'id, name, value'

file 'auto_inc_basic_with_null_2.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql """sync"""
qt_auto_inc_ids "select * from ${table2};"
Expand Down Expand Up @@ -109,7 +109,7 @@ suite("test_dup_table_auto_inc_basic_with_null") {
set 'columns', 'id, name, value'

file 'auto_inc_basic_with_null.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql """sync"""
qt_auto_inc_ids "select * from ${table3} order by id;"
Expand Down Expand Up @@ -142,7 +142,7 @@ suite("test_dup_table_auto_inc_basic_with_null") {
set 'columns', 'id, name, value'

file 'auto_inc_basic_with_null_2.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql """sync"""
qt_auto_inc_ids "select * from ${table4} order by id;"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ suite("test_unique_table_auto_inc") {
set 'columns', 'name, value'

file 'auto_inc_basic.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql "sync"
order_qt_sql "select * from ${table1};"
Expand Down Expand Up @@ -79,7 +79,7 @@ suite("test_unique_table_auto_inc") {
set 'columns', 'name, value'

file 'auto_inc_basic.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql "sync"
qt_sql "select id, name, value from ${table2} order by id;"
Expand Down Expand Up @@ -114,7 +114,7 @@ suite("test_unique_table_auto_inc") {
set 'columns', 'id, name, value'

file 'auto_inc_with_null.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql "sync"
order_qt_sql "select * from ${table3};"
Expand Down Expand Up @@ -149,7 +149,7 @@ suite("test_unique_table_auto_inc") {
set 'columns', 'id, name, value'

file 'auto_inc_update_inplace.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql "sync"
order_qt_update_inplace "select * from ${table4};"
Expand Down Expand Up @@ -182,7 +182,7 @@ suite("test_unique_table_auto_inc") {
set 'columns', 'name, value'

file 'auto_inc_basic.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql "sync"
qt_partial_update_key "select * from ${table5} order by id;"
Expand All @@ -196,7 +196,7 @@ suite("test_unique_table_auto_inc") {
set 'partial_columns', 'true'

file 'auto_inc_partial_update1.csv'
time 10000
time 20000
}
sql "sync"
qt_partial_update_key "select * from ${table5} order by id;"
Expand Down Expand Up @@ -229,7 +229,7 @@ suite("test_unique_table_auto_inc") {
set 'columns', 'name, value'

file 'auto_inc_basic.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql "sync"
qt_partial_update_value "select * from ${table6} order by id;"
Expand All @@ -243,7 +243,7 @@ suite("test_unique_table_auto_inc") {
set 'partial_columns', 'true'

file 'auto_inc_partial_update2.csv'
time 10000
time 20000
}
sql "sync"
qt_partial_update_value "select * from ${table6} order by id;"
Expand Down Expand Up @@ -276,7 +276,7 @@ suite("test_unique_table_auto_inc") {
set 'columns', 'name, value'

file 'auto_inc_basic.csv'
time 10000 // limit inflight 10s
time 20000 // limit inflight 20s
}
sql "sync"
qt_partial_update_value1 "select name, value from ${table7} order by value;"
Expand All @@ -291,7 +291,7 @@ suite("test_unique_table_auto_inc") {
set 'partial_columns', 'true'

file 'auto_inc_partial_update2.csv'
time 10000
time 20000
}
sql "sync"
qt_partial_update_value1 "select name, value from ${table7} order by value;"
Expand All @@ -306,7 +306,7 @@ suite("test_unique_table_auto_inc") {
set 'partial_columns', 'true'

file 'auto_inc_partial_update3.csv'
time 10000
time 20000
}
sql "sync"
qt_partial_update_value1 "select name, value from ${table7} order by value;"
Expand Down

0 comments on commit 95419e3

Please sign in to comment.