⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.btree_gist

📁 PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开发团队说,该版本将加速更多企业向该数据库移植.核心开发成员之一Bruce Momjian表示,在新版PostgreSQL
💻 BTREE_GIST
字号:
This is a B-Tree implementation using GiST that supports the int2, int4,int8, float4, float8 timestamp with/without time zone, timewith/without time zone, date, interval, oid, money, macaddr, char,varchar/text, bytea, numeric, bit, varbit and inet/cidr types.All work was done by Teodor Sigaev (teodor@stack.net) , Oleg Bartunov(oleg@sai.msu.su), Janko Richter (jankorichter@yahoo.de).See http://www.sai.msu.su/~megera/postgres/gist for additionalinformation.NEWS:     Apr 17, 2004 - Performance optimizing     Jan 21, 2004 - add support for bytea, numeric, bit, varbit, inet/cidr     Jan 17, 2004 - Reorganizing code and add support for char, varchar/text     Jan 10, 2004 - btree_gist now support oid , timestamp with time zone ,                    time with and without time zone, date , interval                    money, macaddr     Feb  5, 2003 - btree_gist now support int2, int8, float4, float8     NOTICE:     This version will only work with PostgreSQL version 7.4 and above     because of changes in the system catalogs and the function call     interface.          If you want to index varchar attributes, you have to index using     the function text(<varchar>):     Example:       CREATE TABLE test ( a varchar(23) );       CREATE INDEX testidx ON test USING GIST ( text(a) );INSTALLATION:  gmake  gmake install  -- load functions  psql <database> < btree_gist.sqlREGRESSION TEST:   gmake installcheckEXAMPLE USAGE:   create table test (a int4);   -- create index   create index testidx on test using gist (a);   -- query   select * from test where a < 10;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -