From 4069d48aa763bae9fad9b642276959e4749370fd Mon Sep 17 00:00:00 2001 From: Jan Wieck Date: Thu, 25 Nov 1999 01:28:07 +0000 Subject: Added another single byte oriented decompressor, useful for comparision functions. Added all lztext comparision functions, operators and a default operator class for nbtree on lztext. Jan --- src/include/utils/builtins.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/include/utils/builtins.h') diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 1bf3273ca13..0b24dbab3fe 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.90 1999/11/17 21:21:51 wieck Exp $ + * $Id: builtins.h,v 1.91 1999/11/25 01:28:07 wieck Exp $ * * NOTES * This should normally only be included by fmgr.h. @@ -635,5 +635,12 @@ 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 */ -- cgit v1.2.3