1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

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>
This commit is contained in:
Bruce Momjian
2003-02-13 05:20:05 +00:00
parent 8add2e1bca
commit 8195f8f042
8 changed files with 246 additions and 11 deletions

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.229 2003/02/10 04:44:47 tgl Exp $
* $Id: parsenodes.h,v 1.230 2003/02/13 05:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -698,7 +698,7 @@ typedef struct AlterTableStmt
* A = add column
* T = alter column default
* N = alter column drop not null
* O = alter column set not null
* n = alter column set not null
* S = alter column statistics
* M = alter column storage
* D = drop column
@@ -708,6 +708,7 @@ typedef struct AlterTableStmt
* X = drop constraint
* E = create toast table
* U = change owner
* o = DROP OIDS
*------------
*/
RangeVar *relation; /* table to work on */