Re: JDBC driver and Postgres 9.6beta

Поиск
Список
Период
Сортировка
От Dave Cramer
Тема Re: JDBC driver and Postgres 9.6beta
Дата
Msg-id CADK3HHJmcHQta9QRYq=do01BFJbYjqMAQjYhue9Yo5PnZSs-wQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: JDBC driver and Postgres 9.6beta  (Thomas Kellerer <spam_eater@gmx.net>)
Список pgsql-jdbc


On 17 May 2016 at 02:10, Thomas Kellerer <spam_eater@gmx.net> wrote:
Vladimir Sitnikov schrieb am 14.05.2016 um 15:57:
> Thanks for the report,
>
> I've commented out amcanorder for 9.6 here: https://github.com/pgjdbc/pgjdbc/pull/560
>
> Does anybody know what is the proper way to tell if index column is ASC or DESC in 9.6+?

Based on Tom's statement that only btree indexes can be sorted, the following seems better then just returning NULL:

  CASE am.amname
     WHEN 'btree' THEN
       CASE i.indoption[(i.keys).n - 1] & 1
          WHEN 1 THEN 'D'
          ELSE 'A'
       END
       ELSE NULL
  END AS ASC_OR_DESC,



--
Sent via pgsql-jdbc mailing list (pgsql-jdbc@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-jdbc

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

Предыдущее
От: Thomas Kellerer
Дата:
Сообщение: Re: JDBC driver and Postgres 9.6beta
Следующее
От: Dave Cramer
Дата:
Сообщение: Re: JDBC driver and Postgres 9.6beta