summaryrefslogtreecommitdiff
path: root/src/include/utils
diff options
context:
space:
mode:
authorTom Lane2000-07-30 22:14:09 +0000
committerTom Lane2000-07-30 22:14:09 +0000
commit8f9fa0e14320c5e2f2d0514e5b6c404ec7b54016 (patch)
tree60459ec9f850ee902ba544c6a0102ec4aba634a7 /src/include/utils
parent3a9a74a09dc28268635e0a4c81411ab274d7adac (diff)
Type lztext is toast.
(Sorry, couldn't help it...) Removed type filename as well, since it's unused and probably useless. INITDB FORCED, because pg_rewrite columns are now plain text again.
Diffstat (limited to 'src/include/utils')
-rw-r--r--src/include/utils/builtins.h18
-rw-r--r--src/include/utils/lztext.h19
2 files changed, 1 insertions, 36 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h
index 4d5aeff643d..dfbc4229939 100644
--- a/src/include/utils/builtins.h
+++ b/src/include/utils/builtins.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: builtins.h,v 1.126 2000/07/29 18:46:05 tgl Exp $
+ * $Id: builtins.h,v 1.127 2000/07/30 22:14:04 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -18,7 +18,6 @@
#include "storage/itemptr.h"
#include "utils/inet.h"
#include "utils/numeric.h"
-#include "utils/lztext.h"
/*
* Defined in adt/
@@ -562,21 +561,6 @@ extern Datum int2_sum(PG_FUNCTION_ARGS);
extern Datum int4_sum(PG_FUNCTION_ARGS);
extern Datum int8_sum(PG_FUNCTION_ARGS);
-/* lztext.c */
-extern lztext *lztextin(char *str);
-extern char *lztextout(lztext *lz);
-extern text *lztext_text(lztext *lz);
-extern Datum text_lztext(PG_FUNCTION_ARGS);
-extern int32 lztextlen(lztext *lz);
-extern int32 lztextoctetlen(lztext *lz);
-extern int32 lztext_cmp(lztext *lz1, lztext *lz2);
-extern bool lztext_eq(lztext *lz1, lztext *lz2);
-extern bool lztext_ne(lztext *lz1, lztext *lz2);
-extern bool lztext_gt(lztext *lz1, lztext *lz2);
-extern bool lztext_ge(lztext *lz1, lztext *lz2);
-extern bool lztext_lt(lztext *lz1, lztext *lz2);
-extern bool lztext_le(lztext *lz1, lztext *lz2);
-
/* ri_triggers.c */
extern Datum RI_FKey_check_ins(PG_FUNCTION_ARGS);
extern Datum RI_FKey_check_upd(PG_FUNCTION_ARGS);
diff --git a/src/include/utils/lztext.h b/src/include/utils/lztext.h
deleted file mode 100644
index be57c7478b7..00000000000
--- a/src/include/utils/lztext.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/* ----------
- * lztext.h
- *
- * $Header: /cvsroot/pgsql/src/include/utils/Attic/lztext.h,v 1.4 2000/07/03 23:10:14 wieck Exp $
- *
- * Definitions for the lztext compressed data type
- * ----------
- */
-
-#ifndef _LZTEXT_H_
-#define _LZTEXT_H_
-
-/* ----------
- * The internal storage format of an LZ compressed text field is varattrib
- * ----------
- */
-typedef varattrib lztext;
-
-#endif /* _LZTEXT_H_ */