|
1 |
| -This is B-Tree implementation using GiST for int2, int4, int8, float4, float8 |
2 |
| -timestamp with/without time zone, time with/without time zone, date, |
3 |
| -interval, oid, money and macaddr, char, varchar/text, bytea, numeric, |
4 |
| -bit, varbit, inet/cidr types. |
| 1 | +This is a B-Tree implementation using GiST that supports the int2, int4, |
| 2 | +int8, float4, float8 timestamp with/without time zone, time |
| 3 | +with/without time zone, date, interval, oid, money, macaddr, char, |
| 4 | +varchar/text, bytea, numeric, bit, varbit and inet/cidr types. |
5 | 5 |
|
6 | 6 | All work was done by Teodor Sigaev (teodor@stack.net) , Oleg Bartunov
|
7 | 7 | (oleg@sai.msu.su), Janko Richter (jankorichter@yahoo.de).
|
|
23 | 23 | Feb 5, 2003 - btree_gist now support int2, int8, float4, float8
|
24 | 24 |
|
25 | 25 | NOTICE:
|
26 |
| - This version will works only with postgresql version 7.4 and above |
27 |
| - because of changes in interface of function calling and in system |
28 |
| - tables. |
| 26 | + This version will only work with PostgreSQL version 7.4 and above |
| 27 | + because of changes in the system catalogs and the function call |
| 28 | + interface. |
29 | 29 |
|
30 | 30 | If you want to index varchar attributes, you have to index using
|
31 | 31 | the function text(<varchar>):
|
|
0 commit comments