diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-03-14 05:09:05 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-03-14 05:09:05 +0000 |
commit | 817a3e6d394227f715e55ec7e71ee737e9bdb9aa (patch) | |
tree | 25d9b421d342c4783b5ff2344f60429a7cda17fb /src/include/utils/builtins.h | |
parent | f9f458be10643d1a1fe525ed64b14c5e3b2b1e9a (diff) |
Enclosed below I have a patch to allow a btree index on the int8 type.
I would like some feedback on what the hash function for the int8 hash
function
in the ./backend/access/hash/hashfunc.c should return.
Also, could someone (maybe Tomas Lockhart?) look-over the patch and make
sure
the system table entries are correct? I've tried to research them as
much as I
could, but some of them are still not clear to me.
Thanks,
-Ryan
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 896729573b1..f947dff613a 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.74 1999/02/13 23:22:15 momjian Exp $ + * $Id: builtins.h,v 1.75 1999/03/14 05:09:05 momjian Exp $ * * NOTES * This should normally only be included by fmgr.h. @@ -163,6 +163,7 @@ extern void ltoa(int32 l, char *a); */ extern int32 btint2cmp(int16 a, int16 b); extern int32 btint4cmp(int32 a, int32 b); +extern int32 btint8cmp(int64 *a, int64 *b); extern int32 btint24cmp(int16 a, int32 b); extern int32 btint42cmp(int32 a, int16 b); extern int32 btfloat4cmp(float32 a, float32 b); |