diff options
author | Jan Wieck <JanWieck@Yahoo.com> | 1999-11-25 01:28:07 +0000 |
---|---|---|
committer | Jan Wieck <JanWieck@Yahoo.com> | 1999-11-25 01:28:07 +0000 |
commit | 4069d48aa763bae9fad9b642276959e4749370fd (patch) | |
tree | 8e910bbd759d358e2074818390b5d641a5bcc644 /src/include/utils/builtins.h | |
parent | 4ae43c84c39c2659d80c9d02d103ba84d49045a4 (diff) | |
download | postgresql-4069d48aa763bae9fad9b642276959e4749370fd.tar.gz postgresql-4069d48aa763bae9fad9b642276959e4749370fd.zip |
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
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 9 |
1 files changed, 8 insertions, 1 deletions
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 */ |