diff options
Diffstat (limited to 'src/include/utils/lztext.h')
| -rw-r--r-- | src/include/utils/lztext.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/include/utils/lztext.h b/src/include/utils/lztext.h new file mode 100644 index 00000000000..c83280661c7 --- /dev/null +++ b/src/include/utils/lztext.h @@ -0,0 +1,22 @@ +/* ---------- + * lztext.h + * + * $Header: /cvsroot/pgsql/src/include/utils/Attic/lztext.h,v 1.1 1999/11/17 21:21:51 wieck Exp $ + * + * Definitions for the lztext compressed data type + * ---------- + */ + +#ifndef _LZTEXT_H_ +#define _LZTEXT_H_ + +#include "utils/pg_lzcompress.h" + + +/* ---------- + * The internal storage format of an LZ compressed text field + * ---------- + */ +typedef PGLZ_Header lztext; + +#endif /* _LZTEXT_H_ */ |
