aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bin/scripts/t/102_vacuumdb_stages.pl18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/bin/scripts/t/102_vacuumdb_stages.pl b/src/bin/scripts/t/102_vacuumdb_stages.pl
index 1300aa79057..6505775dfad 100644
--- a/src/bin/scripts/t/102_vacuumdb_stages.pl
+++ b/src/bin/scripts/t/102_vacuumdb_stages.pl
@@ -10,26 +10,26 @@ $node->start;
$node->issues_sql_like(
[ 'vacuumdb', '--analyze-in-stages', 'postgres' ],
-qr/.*statement:\ SET\ default_statistics_target=1;\ SET\ vacuum_cost_delay=0;
- .*statement:\ ANALYZE.*
+qr/statement:\ SET\ default_statistics_target=1;\ SET\ vacuum_cost_delay=0;
+ .*statement:\ ANALYZE
.*statement:\ SET\ default_statistics_target=10;\ RESET\ vacuum_cost_delay;
- .*statement:\ ANALYZE.*
+ .*statement:\ ANALYZE
.*statement:\ RESET\ default_statistics_target;
.*statement:\ ANALYZE/sx,
'analyze three times');
$node->issues_sql_like(
[ 'vacuumdb', '--analyze-in-stages', '--all' ],
-qr/.*statement:\ SET\ default_statistics_target=1;\ SET\ vacuum_cost_delay=0;
- .*statement:\ ANALYZE.*
+qr/statement:\ SET\ default_statistics_target=1;\ SET\ vacuum_cost_delay=0;
+ .*statement:\ ANALYZE
.*statement:\ SET\ default_statistics_target=1;\ SET\ vacuum_cost_delay=0;
- .*statement:\ ANALYZE.*
+ .*statement:\ ANALYZE
.*statement:\ SET\ default_statistics_target=10;\ RESET\ vacuum_cost_delay;
- .*statement:\ ANALYZE.*
+ .*statement:\ ANALYZE
.*statement:\ SET\ default_statistics_target=10;\ RESET\ vacuum_cost_delay;
- .*statement:\ ANALYZE.*
+ .*statement:\ ANALYZE
.*statement:\ RESET\ default_statistics_target;
- .*statement:\ ANALYZE.*
+ .*statement:\ ANALYZE
.*statement:\ RESET\ default_statistics_target;
.*statement:\ ANALYZE/sx,
'analyze more than one database in stages');