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
fix(ci): drop duplicate --quote-style in tpch/tpcds prepare scripts (#19832)
bendsql_client_connect already passes --quote-style=never, so appending it again in prepare_tpch_data.sh / prepare_tpcds_data.sh makes bendsql fail with 'argument --quote-style cannot be used multiple times'.
Copy file name to clipboardExpand all lines: tests/sqllogictests/scripts/prepare_tpcds_data.sh
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,10 +38,10 @@ tables=(
38
38
39
39
force=${2:-"1"}
40
40
if [ "$force"=="0" ];then
41
-
table_exists=$(echo "SELECT COUNT() FROM system.tables WHERE database = '${db}' AND name = 'call_center'"|$BENDSQL_CLIENT_CONNECT --output tsv --quote-style never)
41
+
table_exists=$(echo "SELECT COUNT() FROM system.tables WHERE database = '${db}' AND name = 'call_center'"|$BENDSQL_CLIENT_CONNECT --output tsv)
Copy file name to clipboardExpand all lines: tests/sqllogictests/scripts/prepare_tpch_data.sh
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,10 @@ db=${1:-"tpch_test"}
9
9
force=${2:-"1"}
10
10
11
11
if [ "$force"=="0" ];then
12
-
table_exists=$(echo "SELECT COUNT() FROM system.tables WHERE database = '${db}' AND name = 'nation'"|$BENDSQL_CLIENT_CONNECT --output tsv --quote-style never)
12
+
table_exists=$(echo "SELECT COUNT() FROM system.tables WHERE database = '${db}' AND name = 'nation'"|$BENDSQL_CLIENT_CONNECT --output tsv)
0 commit comments