diff options
| author | Bruce Momjian | 2003-02-13 05:20:05 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2003-02-13 05:20:05 +0000 |
| commit | 8195f8f0427e0387f595ca951e4dcc257655e891 (patch) | |
| tree | 1174ef5cb3c3e240c542260879cfc34a9a9437f9 /src/include/commands | |
| parent | 8add2e1bcafd92a06fada1098b110638a3d4b7f6 (diff) | |
Code for WITHOUT OIDS.
On Wed, 2003-01-08 at 21:59, Christopher Kings-Lynne wrote:
> I agree. I want to remove OIDs from heaps of our tables when we go to 7.3.
> I'd rather not have to do it in the dump due to down time.
Rod Taylor <rbt@rbt.ca>
Diffstat (limited to 'src/include/commands')
| -rw-r--r-- | src/include/commands/tablecmds.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/commands/tablecmds.h b/src/include/commands/tablecmds.h index 13873dad1b5..6b533cab2fc 100644 --- a/src/include/commands/tablecmds.h +++ b/src/include/commands/tablecmds.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: tablecmds.h,v 1.10 2002/11/11 22:19:24 tgl Exp $ + * $Id: tablecmds.h,v 1.11 2003/02/13 05:20:03 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -47,6 +47,8 @@ extern void AlterTableCreateToastTable(Oid relOid, bool silent); extern void AlterTableOwner(Oid relationOid, int32 newOwnerSysId); +extern void AlterTableAlterOids(Oid myrelid, bool recurse, bool setOid); + extern Oid DefineRelation(CreateStmt *stmt, char relkind); extern void RemoveRelation(const RangeVar *relation, DropBehavior behavior); |
