diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-08-10 14:34:28 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-08-10 14:34:28 +0000 |
commit | 13923be7c8799c4f8ce0f5a04e4cd06c5b696f25 (patch) | |
tree | c5a648d9e97754f4a99195d6de48b470a6326253 /src/backend/access/gist/gistget.c | |
parent | 77a69a2ed165c31a981ac553f56c7b43e12d9ab5 (diff) | |
download | postgresql-13923be7c8799c4f8ce0f5a04e4cd06c5b696f25.tar.gz |
1. null-safe interface to GiST
(as proposed in http://fts.postgresql.org/db/mw/msg.html?mid=1028327)
2. support for 'pass-by-value' arguments - to test this
we used special opclass for int4 with values in range [0-2^15]
More testing will be done after resolving problem with
index_formtuple and implementation of B-tree using GiST
3. small patch to contrib modules (seg,cube,rtree_gist,intarray) -
mark functions as 'isstrict' where needed.
Oleg Bartunov
Diffstat (limited to 'src/backend/access/gist/gistget.c')
-rw-r--r-- | src/backend/access/gist/gistget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/gist/gistget.c b/src/backend/access/gist/gistget.c index 028ff601d9..d334b56928 100644 --- a/src/backend/access/gist/gistget.c +++ b/src/backend/access/gist/gistget.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/gist/gistget.c,v 1.28 2001/05/31 18:16:54 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/gist/gistget.c,v 1.29 2001/08/10 14:34:28 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -254,7 +254,7 @@ gistindex_keytest(IndexTuple tuple, gistdentryinit(giststate, key[0].sk_attno-1, &de, datum, r, p, offset, IndexTupleSize(tuple) - sizeof(IndexTupleData), - FALSE); + FALSE, isNull); if (key[0].sk_flags & SK_COMMUTE) { |