File tree 2 files changed +6
-2
lines changed 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 5
5
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
- * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.25 2007/01/05 22:19:50 momjian Exp $
8
+ * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.26 2007/08/10 00:39:31 tgl Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
@@ -138,6 +138,8 @@ main(int argc, char *argv[])
138
138
memset (& popt , 0 , sizeof (popt ));
139
139
popt .topt .format = PRINT_ALIGNED ;
140
140
popt .topt .border = 1 ;
141
+ popt .topt .start_table = true;
142
+ popt .topt .stop_table = true;
141
143
popt .topt .encoding = PQclientEncoding (conn );
142
144
popt .title = _ ("Procedural Languages" );
143
145
printQuery (result , & popt , stdout , NULL );
Original file line number Diff line number Diff line change 5
5
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
- * $PostgreSQL: pgsql/src/bin/scripts/droplang.c,v 1.22 2007/01/05 22:19:50 momjian Exp $
8
+ * $PostgreSQL: pgsql/src/bin/scripts/droplang.c,v 1.23 2007/08/10 00:39:31 tgl Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
@@ -149,6 +149,8 @@ main(int argc, char *argv[])
149
149
memset (& popt , 0 , sizeof (popt ));
150
150
popt .topt .format = PRINT_ALIGNED ;
151
151
popt .topt .border = 1 ;
152
+ popt .topt .start_table = true;
153
+ popt .topt .stop_table = true;
152
154
popt .topt .encoding = PQclientEncoding (conn );
153
155
popt .title = _ ("Procedural Languages" );
154
156
printQuery (result , & popt , stdout , NULL );
You can’t perform that action at this time.
0 commit comments