diff options
Diffstat (limited to 'src/backend/commands')
-rw-r--r-- | src/backend/commands/explain.c | 4 | ||||
-rw-r--r-- | src/backend/commands/tablecmds.c | 9 |
2 files changed, 6 insertions, 7 deletions
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c index 3c134a5c166..e2f3d4aa813 100644 --- a/src/backend/commands/explain.c +++ b/src/backend/commands/explain.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994-5, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/explain.c,v 1.119 2004/01/31 05:09:40 neilc Exp $ + * $PostgreSQL: pgsql/src/backend/commands/explain.c,v 1.120 2004/04/01 21:28:44 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -125,7 +125,7 @@ ExplainResultDesc(ExplainStmt *stmt) /* need a tuple descriptor representing a single TEXT column */ tupdesc = CreateTemplateTupleDesc(1, false); TupleDescInitEntry(tupdesc, (AttrNumber) 1, "QUERY PLAN", - TEXTOID, -1, 0, false); + TEXTOID, -1, 0); return tupdesc; } diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 1a6bd2fdfc0..a6e3a93d349 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.101 2004/03/23 19:35:16 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.102 2004/04/01 21:28:44 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1796,7 +1796,6 @@ AlterTableAddColumn(Oid myrelid, attribute->attnum = i; attribute->attbyval = tform->typbyval; attribute->attndims = attndims; - attribute->attisset = (bool) (tform->typtype == 'c'); attribute->attstorage = tform->typstorage; attribute->attalign = tform->typalign; attribute->attnotnull = colDef->is_not_null; @@ -4084,15 +4083,15 @@ AlterTableCreateToastTable(Oid relOid, bool silent) TupleDescInitEntry(tupdesc, (AttrNumber) 1, "chunk_id", OIDOID, - -1, 0, false); + -1, 0); TupleDescInitEntry(tupdesc, (AttrNumber) 2, "chunk_seq", INT4OID, - -1, 0, false); + -1, 0); TupleDescInitEntry(tupdesc, (AttrNumber) 3, "chunk_data", BYTEAOID, - -1, 0, false); + -1, 0); /* * Ensure that the toast table doesn't itself get toasted, or we'll be |