diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-02-04 21:32:12 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-02-04 21:32:12 +0000 |
commit | 1637684af4df2ad4310eb722616f4116906114f1 (patch) | |
tree | 220c3806582e63d26385f8f46c97a142878a9492 /src/include | |
parent | 60f54d629d9211d676a79743f169221824293261 (diff) |
Cleanup getattr code. Make CHAR() use attcacheoff.
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 ccd70a0afe9..76e4f52bda0 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.30 1998/02/03 19:27:17 momjian Exp $ + * $Id: pg_type.h,v 1.31 1998/02/04 21:32:12 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(attr) (false && (attr)->atttypid == BPCHAROID && (attr)->atttypmod > 0) +#define VARLENA_FIXED_SIZE(attr) ((attr)->atttypid == BPCHAROID && (attr)->atttypmod > 0) /* * prototypes for functions in pg_type.c |