diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-08-10 00:39:31 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-08-10 00:39:31 +0000 |
commit | 509bfd6a6b0c5d9d127c76213b110377b62cd046 (patch) | |
tree | 6af09085162cdea43b091f6d8b3e4b9a7c121544 /src/bin/scripts/createlang.c | |
parent | faa11796780af4f4aeb517bad03c79e6dfafc3a8 (diff) | |
download | postgresql-509bfd6a6b0c5d9d127c76213b110377b62cd046.tar.gz postgresql-509bfd6a6b0c5d9d127c76213b110377b62cd046.zip |
Fix unintended change of output format for createlang/droplang -l. Missed
these uses of printQuery() in FETCH_COUNT patch a year ago :-(. Per report
from Tomoaki Sato.
Diffstat (limited to 'src/bin/scripts/createlang.c')
-rw-r--r-- | src/bin/scripts/createlang.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/scripts/createlang.c b/src/bin/scripts/createlang.c index b06184ea512..e1d28416735 100644 --- a/src/bin/scripts/createlang.c +++ b/src/bin/scripts/createlang.c @@ -5,7 +5,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.25 2007/01/05 22:19:50 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.26 2007/08/10 00:39:31 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -138,6 +138,8 @@ main(int argc, char *argv[]) memset(&popt, 0, sizeof(popt)); popt.topt.format = PRINT_ALIGNED; popt.topt.border = 1; + popt.topt.start_table = true; + popt.topt.stop_table = true; popt.topt.encoding = PQclientEncoding(conn); popt.title = _("Procedural Languages"); printQuery(result, &popt, stdout, NULL); |