summaryrefslogtreecommitdiff
path: root/contrib/intarray/bench/create_test.pl
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2010-11-23 22:27:50 +0200
committerPeter Eisentraut <peter_e@gmx.net>2010-11-23 22:34:55 +0200
commitfc946c39aeacdff7df60c83fca6582985e8546c8 (patch)
tree866145f64c09c0673a4aa3d3a2f5647f0b7afc45 /contrib/intarray/bench/create_test.pl
parent44475e782f4674d257b9e5c1a3930218a4b4deea (diff)
downloadpostgresql-fc946c39aeacdff7df60c83fca6582985e8546c8.tar.gz
Remove useless whitespace at end of lines
Diffstat (limited to 'contrib/intarray/bench/create_test.pl')
-rwxr-xr-xcontrib/intarray/bench/create_test.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/intarray/bench/create_test.pl b/contrib/intarray/bench/create_test.pl
index 3a5e96301b..67394f87b7 100755
--- a/contrib/intarray/bench/create_test.pl
+++ b/contrib/intarray/bench/create_test.pl
@@ -9,7 +9,7 @@ create table message (
sections int[]
);
create table message_section_map (
- mid int not null,
+ mid int not null,
sid int not null
);
@@ -66,7 +66,7 @@ unlink 'message.tmp', 'message_section_map.tmp';
sub copytable {
my $t = shift;
-
+
print "COPY $t from stdin;\n";
open( FFF, "$t.tmp") || die;
while(<FFF>) { print; }