summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2016-08-17 19:51:11 +0000
committerTom Lane2016-08-17 19:51:11 +0000
commit60bb1bb1224dc5c6d8dd8f5829f354ace74aba18 (patch)
tree320c9085889e2ab13b8e8f3291216190872aa291
parent9d5bf77b59e618399762d718248d580726c99f3c (diff)
Fix -e option in contrib/intarray/bench/bench.pl.
As implemented, -e ran an EXPLAIN but then discarded the output, which certainly seems pointless. Make it print to stdout instead. It's been like that forever, so back-patch to all supported branches. Daniel Gustafsson, reviewed by Andreas Scherbaum Patch: <B97BDCB7-A3B3-4734-90B5-EDD586941629@yesql.se>
-rwxr-xr-xcontrib/intarray/bench/bench.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/intarray/bench/bench.pl b/contrib/intarray/bench/bench.pl
index 87462911147..395d61655f2 100755
--- a/contrib/intarray/bench/bench.pl
+++ b/contrib/intarray/bench/bench.pl
@@ -92,7 +92,8 @@ if ($opt{v})
if ($opt{e})
{
- $dbi->do("explain $sql");
+ my @plan = map { "$_->[0]\n" } @{$dbi->selectall_arrayref("explain $sql")};
+ print @plan;
}
my $t0 = [gettimeofday];