diff options
| author | Bruce Momjian | 1998-02-03 19:27:30 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-02-03 19:27:30 +0000 |
| commit | 00f325d510ea935d56015b983a7f3a5ec4acfbd3 (patch) | |
| tree | ac942cf79a588d961deaa9ef8738e5bfed272fd0 /src/include | |
| parent | f00a9e3e9f66649b69085295d9ea02d2a36adab3 (diff) | |
Subselects with =, >, etc.
Cleanup for vacuum help, manual page, and error message
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/pg_type.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
