1
0
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:
Teodor Sigaev
2004-03-25 16:56:10 +00:00
parent 457ad3925d
commit eebdfcdbe6
4 changed files with 722 additions and 0 deletions

View File

@ -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;