mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
1 Minimize memory allocation for void (but not null) value.
2 Add silly ordering for ts_vector to aim grouping, union, except etc. Don't use BTree opclass (tsvector_ops).
This commit is contained in:
@ -247,3 +247,9 @@ Upon a woman s face. E. J. Pratt (1882 1964)
|
||||
|
||||
--check debug
|
||||
select * from ts_debug('Tsearch module for PostgreSQL 7.3.3');
|
||||
|
||||
--check ordering
|
||||
drop trigger tsvectorupdate on test_tsvector;
|
||||
insert into test_tsvector values (null, null);
|
||||
select a is null, a from test_tsvector order by a;
|
||||
|
||||
|
Reference in New Issue
Block a user