Re: POC, WIP: OR-clause support for indexes

Поиск
Список
Период
Сортировка
От jian he
Тема Re: POC, WIP: OR-clause support for indexes
Дата
Msg-id CACJufxGVEbUCSrz=9oOdv5XhCH8G0uOjPizVOtva_eU4YKuJ_Q@mail.gmail.com
обсуждение исходный текст
Ответ на Re: POC, WIP: OR-clause support for indexes  (Alexander Korotkov <aekorotkov@gmail.com>)
Список pgsql-hackers
looking at it again. in match_orclause_to_indexcol

        /* Only the operator returning a boolean suits the transformation. */
        if (get_op_rettype(opno) != BOOLOID)
            break;

can change to

        if (subClause->opresulttype != BOOLOID)
            break;

for saving some cycles?



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