mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
d70d119151
In btree_gin and citext, avoid some not-particularly-interesting dependencies on the sorting of 'aa'. In tsearch2, use COLLATE "C" to remove an uninteresting dependency on locale sort order (and thereby allow removal of a variant expected-file). Also, in citext, avoid assuming that lower('I') = 'i'. This isn't relevant to Danish but it does fail in Turkish.
45 lines
605 B
Plaintext
45 lines
605 B
Plaintext
set enable_seqscan=off;
|
|
CREATE TABLE test_text (
|
|
i text
|
|
);
|
|
INSERT INTO test_text VALUES ('a'),('ab'),('abc'),('abb'),('axy'),('xyz');
|
|
CREATE INDEX idx_text ON test_text USING gin (i);
|
|
SELECT * FROM test_text WHERE i<'abc' ORDER BY i;
|
|
i
|
|
-----
|
|
a
|
|
ab
|
|
abb
|
|
(3 rows)
|
|
|
|
SELECT * FROM test_text WHERE i<='abc' ORDER BY i;
|
|
i
|
|
-----
|
|
a
|
|
ab
|
|
abb
|
|
abc
|
|
(4 rows)
|
|
|
|
SELECT * FROM test_text WHERE i='abc' ORDER BY i;
|
|
i
|
|
-----
|
|
abc
|
|
(1 row)
|
|
|
|
SELECT * FROM test_text WHERE i>='abc' ORDER BY i;
|
|
i
|
|
-----
|
|
abc
|
|
axy
|
|
xyz
|
|
(3 rows)
|
|
|
|
SELECT * FROM test_text WHERE i>'abc' ORDER BY i;
|
|
i
|
|
-----
|
|
axy
|
|
xyz
|
|
(2 rows)
|
|
|