From 00f325d510ea935d56015b983a7f3a5ec4acfbd3 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 3 Feb 1998 19:27:30 +0000 Subject: Subselects with =, >, etc. Cleanup for vacuum help, manual page, and error message --- src/include/catalog/pg_type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include') diff --git a/src/include/catalog/pg_type.h b/src/include/catalog/pg_type.h index af76a37d553..ccd70a0afe9 100644 --- a/src/include/catalog/pg_type.h +++ b/src/include/catalog/pg_type.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_type.h,v 1.29 1998/02/03 01:53:24 momjian Exp $ + * $Id: pg_type.h,v 1.30 1998/02/03 19:27:17 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -366,7 +366,7 @@ DESCR("limited-range ISO-format date and time"); #define USE_ATTTYPMOD(typeid) ((typeid) == BPCHAROID || (typeid) == VARCHAROID) -#define VARLENA_FIXED_SIZE(typeid) ((typeid) == BPCHAROID) +#define VARLENA_FIXED_SIZE(attr) (false && (attr)->atttypid == BPCHAROID && (attr)->atttypmod > 0) /* * prototypes for functions in pg_type.c -- cgit v1.2.3