Re: using xmin in a query?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: using xmin in a query?
Дата
Msg-id 3468.1311881265@sss.pgh.pa.us
обсуждение исходный текст
Ответ на using xmin in a query?  (Michael Nolan <htfoot@gmail.com>)
Ответы Re: using xmin in a query?
Список pgsql-general
Michael Nolan <htfoot@gmail.com> writes:
> Why does this query succeed:
> select count(*) from tablename where xmin = 2

> while this query fails:

> select count(*) from tablename where xmin != 2

It told you why not:

> ERROR:  operator does not exist: xid <> integer

You could do "where not (xmin = 2)", I suppose.

            regards, tom lane

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

Предыдущее
От: Merlin Moncure
Дата:
Сообщение: Re: How to implement autostart of postgres?
Следующее
От: Michael Nolan
Дата:
Сообщение: Re: using xmin in a query?