We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3592fa8 commit dcc6ce4Copy full SHA for dcc6ce4
tests/suites/5_ee/01_vacuum/01_0002_ee_vacuum_drop_table.sh
@@ -120,7 +120,7 @@ echo "select * from test_vacuum_drop_4.b" | $BENDSQL_CLIENT_CONNECT
120
## test vacuum table output
121
echo "create table test_vacuum_drop_4.c(c int)" | $BENDSQL_CLIENT_CONNECT
122
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}')
+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}')
124
if [[ "$count" != "4" ]]; then
125
echo "vacuum table, count:$count"
126
exit 1
0 commit comments