mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Add btree_gin contrib module.
Teodor Sigaev and Oleg Bartunov
This commit is contained in:
15
contrib/btree_gin/sql/bytea.sql
Normal file
15
contrib/btree_gin/sql/bytea.sql
Normal file
@ -0,0 +1,15 @@
|
||||
set enable_seqscan=off;
|
||||
|
||||
CREATE TABLE test_bytea (
|
||||
i bytea
|
||||
);
|
||||
|
||||
INSERT INTO test_bytea VALUES ('aaa'),('a'),('abc'),('abb'),('axy'),('xyz');
|
||||
|
||||
CREATE INDEX idx_bytea ON test_bytea USING gin (i);
|
||||
|
||||
SELECT * FROM test_bytea WHERE i<'abc'::bytea ORDER BY i;
|
||||
SELECT * FROM test_bytea WHERE i<='abc'::bytea ORDER BY i;
|
||||
SELECT * FROM test_bytea WHERE i='abc'::bytea ORDER BY i;
|
||||
SELECT * FROM test_bytea WHERE i>='abc'::bytea ORDER BY i;
|
||||
SELECT * FROM test_bytea WHERE i>'abc'::bytea ORDER BY i;
|
Reference in New Issue
Block a user