1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

atttypmod now -1.

This commit is contained in:
Bruce Momjian
1998-02-07 06:11:56 +00:00
parent ec9d5d71ec
commit 65faaf3046
10 changed files with 243 additions and 241 deletions

View File

@ -7,7 +7,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.34 1998/02/06 19:18:06 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.35 1998/02/07 06:10:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -627,6 +627,7 @@ DefineAttr(char *name, char *type, int attnum)
attrtypes[attnum]->attbyval = (attlen == 1) || (attlen == 2) || (attlen == 4);
}
attrtypes[attnum]->attcacheoff = -1;
attrtypes[attnum]->atttypmod = -1;
}