Creating index on concatenated char columns fails is Postgres 9 (regression)

Поиск
Список
Период
Сортировка
От Andrus
Тема Creating index on concatenated char columns fails is Postgres 9 (regression)
Дата
Msg-id 147A7F6B6CF545B9925669D8584DE18D@dell2
обсуждение исходный текст
Ответы Re: Creating index on concatenated char columns fails is Postgres 9 (regression)  (Adrian Klaver <adrian.klaver@aklaver.com>)
Список pgsql-general
Steps to reproduce:
 
Run commands
 
    create temp table test (kuupaev date, kellaaeg char(5)  ) on commit drop;
    create index test on test ((kuupaev||kellaaeg));    
 
in
 
    "PostgreSQL 9.3.4, compiled by Visual C++ build 1600, 32-bit"
 
Observed result:
 
    ERROR:  functions in index expression must be marked IMMUTABLE
 
In
 
    "PostgreSQL 8.4.4, compiled by Visual C++ build 1400, 32-bit"
 
those commands work OK.
 
I need this index to speed up query
 
SELECT
    max( kuupaev||kellaaeg )
  from ALGSA
  where laonr=?nlaonr and kuupaev <=?prmLOPP and kuupaev||kellaaeg <= ?someparam
 
How to fix or other way to speed this query?
 
 
Andrus.

В списке pgsql-general по дате отправления:

Предыдущее
От: Jonathan Vanasco
Дата:
Сообщение: Benching Queries
Следующее
От: "Andrus"
Дата:
Сообщение: How to find greatest record before known values fast