*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.84 2000/07/05 12:45:25 wieck Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.85 2000/07/05 13:22:23 wieck Exp $
*
* NOTES
* The PerformAddAttribute() code, like most of the relation
heap_freetuple(reltup);
heap_close(rel, NoLock);
+
+ /*
+ * Automatically create the secondary relation for TOAST
+ * if it formerly had no such but now has toastable attributes.
+ */
+ CommandCounterIncrement();
+ AlterTableCreateToastTable(relationName, true);
}
{
heap_close(rel, NoLock);
heap_close(class_rel, NoLock);
+ heap_freetuple(reltup);
return;
}
}
if (((Form_pg_class) GETSTRUCT(reltup))->reltoastrelid != InvalidOid)
+ {
+ if (silent)
+ {
+ heap_close(rel, NoLock);
+ heap_close(class_rel, NoLock);
+ heap_freetuple(reltup);
+ return;
+ }
+
elog(ERROR, "ALTER TABLE: relation \"%s\" already has a toast table",
relationName);
+ }
/*
* Create the toast table and its index
heap_close(class_rel, NoLock);
heap_close(rel, NoLock);
+
+ CommandCounterIncrement();
}
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.119 2000/07/04 06:11:33 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.120 2000/07/05 13:22:25 wieck Exp $
*
*-------------------------------------------------------------------------
*/
#include "access/heapam.h"
#include "catalog/heap.h"
+#include "commands/command.h"
#include "commands/trigger.h"
#include "executor/execdebug.h"
#include "executor/execdefs.h"
*/
CommandCounterIncrement();
+ /*
+ * Eventually create a TOAST table for the into relation
+ */
+ AlterTableCreateToastTable(intoName, true);
+
intoRelationDesc = heap_open(intoRelationId,
AccessExclusiveLock);
}