diff options
author | Teodor Sigaev <teodor@sigaev.ru> | 2005-07-01 13:44:56 +0000 |
---|---|---|
committer | Teodor Sigaev <teodor@sigaev.ru> | 2005-07-01 13:44:56 +0000 |
commit | ef770cbb6913cc4c816bb09acd7cb13f996281bd (patch) | |
tree | fe973e6aeb9c018d54ea6267f49d5d1b2d5d2f95 /contrib/btree_gist/btree_bytea.c | |
parent | 8f6e8e8fed372a592f645d8900b6f456db82cc59 (diff) | |
download | postgresql-ef770cbb6913cc4c816bb09acd7cb13f996281bd.tar.gz postgresql-ef770cbb6913cc4c816bb09acd7cb13f996281bd.zip |
Fixes from Janko Richter <jankorichter@yahoo.de>
- Fix wrong index results on text, char, varchar for multibyte strings
- Fix some SIGFPE signals
- Add support for infinite timestamps
- Because of locale settings, btree_gist can not be a prefix index anymore (for text).
Each node holds now just the lower and upper boundary.
Diffstat (limited to 'contrib/btree_gist/btree_bytea.c')
-rw-r--r-- | contrib/btree_gist/btree_bytea.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/btree_gist/btree_bytea.c b/contrib/btree_gist/btree_bytea.c index 375cc26cc6c..d5345872d6e 100644 --- a/contrib/btree_gist/btree_bytea.c +++ b/contrib/btree_gist/btree_bytea.c @@ -65,7 +65,7 @@ gbt_byteacmp(const bytea *a, const bytea *b) static const gbtree_vinfo tinfo = { gbt_t_bytea, - FALSE, + 0, TRUE, gbt_byteagt, gbt_byteage, |