summaryrefslogtreecommitdiff
path: root/src/include/utils/builtins.h
diff options
context:
space:
mode:
authorJan Wieck <JanWieck@Yahoo.com>1999-11-17 21:21:51 +0000
committerJan Wieck <JanWieck@Yahoo.com>1999-11-17 21:21:51 +0000
commit79c3b71c1be3a79ec2d1f4d64bdef13f0e0a086a (patch)
treed0bdc22ff0f14c29631a3614b933e761feebf3c2 /src/include/utils/builtins.h
parentddc335290cb0bd09b3529cb032cfabf85029201b (diff)
downloadpostgresql-79c3b71c1be3a79ec2d1f4d64bdef13f0e0a086a.tar.gz
The new LZ compression and an lztext data type based on it.
Jan
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r--src/include/utils/builtins.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h
index fe6fd11718..1bf3273ca1 100644
--- a/src/include/utils/builtins.h
+++ b/src/include/utils/builtins.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: builtins.h,v 1.89 1999/10/11 06:28:28 inoue Exp $
+ * $Id: builtins.h,v 1.90 1999/11/17 21:21:51 wieck Exp $
*
* NOTES
* This should normally only be included by fmgr.h.
@@ -30,6 +30,7 @@
#include "utils/int8.h"
#include "utils/nabstime.h"
#include "utils/numeric.h"
+#include "utils/lztext.h"
#include "access/heapam.h" /* for HeapTuple */
/*
@@ -627,4 +628,12 @@ HeapTuple RI_FKey_setnull_upd(FmgrInfo *proinfo);
HeapTuple RI_FKey_setdefault_del(FmgrInfo *proinfo);
HeapTuple RI_FKey_setdefault_upd(FmgrInfo *proinfo);
+/* lztext.c */
+lztext *lztextin(char *str);
+char *lztextout(lztext *lz);
+text *lztext_text(lztext *lz);
+lztext *text_lztext(text *txt);
+int32 lztextlen(lztext *lz);
+int32 lztextoctetlen(lztext *lz);
+
#endif /* BUILTINS_H */