diff options
author | Jan Wieck <JanWieck@Yahoo.com> | 1999-12-28 13:40:53 +0000 |
---|---|---|
committer | Jan Wieck <JanWieck@Yahoo.com> | 1999-12-28 13:40:53 +0000 |
commit | e3cec20ccda58929fc2375087def3b2a2af30fc4 (patch) | |
tree | bb3f3423ea5726c2a98ba26748c97a4581d8933b /src/include/utils/builtins.h | |
parent | e9bfedc9bc6dcd962485c5c40a0fc4cd8e93ab92 (diff) |
Removed LZTEXT datatype as discussed.
Jan
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 94a1b61ffc0..4486131d416 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.92 1999/12/16 01:25:14 momjian Exp $ + * $Id: builtins.h,v 1.93 1999/12/28 13:40:52 wieck Exp $ * * NOTES * This should normally only be included by fmgr.h. @@ -30,7 +30,6 @@ #include "utils/int8.h" #include "utils/nabstime.h" #include "utils/numeric.h" -#include "utils/lztext.h" #include "access/heapam.h" /* for HeapTuple */ /* @@ -633,19 +632,4 @@ 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); -int32 lztext_cmp(lztext *lz1, lztext *lz2); -bool lztext_eq(lztext *lz1, lztext *lz2); -bool lztext_ne(lztext *lz1, lztext *lz2); -bool lztext_gt(lztext *lz1, lztext *lz2); -bool lztext_ge(lztext *lz1, lztext *lz2); -bool lztext_lt(lztext *lz1, lztext *lz2); -bool lztext_le(lztext *lz1, lztext *lz2); - #endif /* BUILTINS_H */ |