Skip to content

Commit dcc6ce4

Browse files
committed
tweak stateless test
1 parent 3592fa8 commit dcc6ce4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/suites/5_ee/01_vacuum/01_0002_ee_vacuum_drop_table.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ echo "select * from test_vacuum_drop_4.b" | $BENDSQL_CLIENT_CONNECT
120120
## test vacuum table output
121121
echo "create table test_vacuum_drop_4.c(c int)" | $BENDSQL_CLIENT_CONNECT
122122
echo "INSERT INTO test_vacuum_drop_4.c VALUES (1),(2)" | $BENDSQL_CLIENT_OUTPUT_NULL
123-
count=$(echo "set data_retention_time_in_days=0; vacuum table test_vacuum_drop_4.c" | $BENDSQL_CLIENT_CONNECT | awk '{print $9}')
123+
count=$(echo "set data_retention_time_in_days=0; set fallback_to_legacy_vacuum = 1; vacuum table test_vacuum_drop_4.c" | $BENDSQL_CLIENT_CONNECT | awk '{print $9}')
124124
if [[ "$count" != "4" ]]; then
125125
echo "vacuum table, count:$count"
126126
exit 1

0 commit comments

Comments
 (0)