diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/pg_rewrite.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/catalog/pg_rewrite.h b/src/include/catalog/pg_rewrite.h index 86d3b721b9c..e9a4d4ecd2b 100644 --- a/src/include/catalog/pg_rewrite.h +++ b/src/include/catalog/pg_rewrite.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_rewrite.h,v 1.7 1999/02/13 23:21:14 momjian Exp $ + * $Id: pg_rewrite.h,v 1.8 1999/11/18 13:56:30 wieck Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -37,8 +37,8 @@ CATALOG(pg_rewrite) Oid ev_class; int2 ev_attr; bool is_instead; - text ev_qual; /* VARLENA */ - text ev_action; /* VARLENA */ + lztext ev_qual; /* Compressed text */ + lztext ev_action; /* Compressed text */ } FormData_pg_rewrite; /* ---------------- |