From d4f4b971a4eb7992add4e70752aa9d0936c43dcc Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 16 Aug 2001 20:38:56 +0000 Subject: Sequences are now based on int8, not int4, arithmetic. SERIAL pseudo-type has an alias SERIAL4 and a sister SERIAL8. SERIAL8 is just the same except the created column is type int8 not int4. initdb forced. Note this also breaks any chance of pg_upgrade from 7.1, unless we hack up pg_upgrade to drop and recreate sequences. (Which is not out of the question, but I don't wanna do it.) --- src/backend/commands/view.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/backend/commands/view.c') diff --git a/src/backend/commands/view.c b/src/backend/commands/view.c index 461ac162519..2bb9fd75a73 100644 --- a/src/backend/commands/view.c +++ b/src/backend/commands/view.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: view.c,v 1.56 2001/08/12 21:35:18 tgl Exp $ + * $Id: view.c,v 1.57 2001/08/16 20:38:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -68,7 +68,6 @@ DefineVirtualRelation(char *relname, List *tlist) def->typename = typename; def->is_not_null = false; - def->is_sequence = false; def->raw_default = NULL; def->cooked_default = NULL; def->constraints = NIL; -- cgit v1.2.3