Re: [GENERAL] Full text search in PostgreSQL 8.4 [SOLVED]

2009-07-21 Thread Konstantin Pavlov
Hello, The problem was with locale. To fix it I changed it to ru_RU.CP1251 and now everything works as expected. --- Konstantin Pavlov

Re: [GENERAL] Full text search in PostgreSQL 8.4

2009-07-20 Thread Andreas Wenk
Hello, I recently upgraded to version 8.4 and now full text search with russian configuration is not working: template1=# create database test encoding='win1251'; test=# create table test ("test" varchar(255)); test=# insert into test values ('тест'); test=# select * from test where to_ts

[GENERAL] Full text search in PostgreSQL 8.4

2009-07-19 Thread Konstantin Pavlov
Hello, I recently upgraded to version 8.4 and now full text search with russian configuration is not working: template1=# create database test encoding='win1251'; test=# create table test ("test" varchar(255)); test=# insert into test values ('тест'); test=# select * from test where to_tsvect