From: Greg Sabino Mullane Date: Thu, 23 Apr 2009 17:37:49 +0000 (-0400) Subject: Global vacuum in case brand new cluster. X-Git-Tag: 2.9.0~95 X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=43f1a27980e9ba7fb3d5b7a34f41e39981466c93;p=check_postgres.git Global vacuum in case brand new cluster. --- diff --git a/t/02_last_vacuum.t b/t/02_last_vacuum.t index e8c140899..4527daf64 100644 --- a/t/02_last_vacuum.t +++ b/t/02_last_vacuum.t @@ -54,6 +54,7 @@ like ($cp->run(qq{-w 0 --includeuser=gandalf}), qr{No matching.*user}, $t); local $dbh->{Warn}; local $dbh->{AutoCommit} = 1; +$dbh->do('VACUUM'); $dbh->do(qq{DROP TABLE IF EXISTS $testtbl}); $dbh->do(qq{CREATE TABLE $testtbl AS SELECT 123::INTEGER AS a FROM generate_series(1,200000)}); $dbh->commit();