From 65faaf30463ec517d0c25aa56a4d3c48a9f8ca83 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 7 Feb 1998 06:11:56 +0000 Subject: atttypmod now -1. --- src/backend/bootstrap/bootstrap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/backend/bootstrap/bootstrap.c') diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index ad3d044a68..eea4c71759 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -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; } -- cgit v1.2.1