|
5 | 5 | * command, configuration file, and command line options. |
6 | 6 | * See src/backend/utils/misc/README for more information. |
7 | 7 | * |
8 | | - * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.73 2002/07/2005:49:27 momjian Exp $ |
| 8 | + * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.74 2002/07/2006:17:43 momjian Exp $ |
9 | 9 | * |
10 | 10 | * Copyright 2000 by PostgreSQL Global Development Group |
11 | 11 | * Written by Peter Eisentraut <peter_e@gmx.net>. |
@@ -2262,7 +2262,7 @@ ShowGUCConfigOption(const char *name) |
2262 | 2262 | char*value; |
2263 | 2263 |
|
2264 | 2264 | /* need a tuple descriptor representing a single TEXT column */ |
2265 | | -tupdesc=CreateTemplateTupleDesc(1); |
| 2265 | +tupdesc=CreateTemplateTupleDesc(1,WITHOUTOID); |
2266 | 2266 | TupleDescInitEntry(tupdesc, (AttrNumber)1, (char*)name, |
2267 | 2267 | TEXTOID,-1,0, false); |
2268 | 2268 |
|
@@ -2293,7 +2293,7 @@ ShowAllGUCConfig(void) |
2293 | 2293 | char*values[2]; |
2294 | 2294 |
|
2295 | 2295 | /* need a tuple descriptor representing two TEXT columns */ |
2296 | | -tupdesc=CreateTemplateTupleDesc(2); |
| 2296 | +tupdesc=CreateTemplateTupleDesc(2,WITHOUTOID); |
2297 | 2297 | TupleDescInitEntry(tupdesc, (AttrNumber)1,"name", |
2298 | 2298 | TEXTOID,-1,0, false); |
2299 | 2299 | TupleDescInitEntry(tupdesc, (AttrNumber)2,"setting", |
|