Delete w/ regexp

Поиск
Список
Период
Сортировка
От Steve Wolfe
Тема Delete w/ regexp
Дата
Msg-id 002301c0c913$205b7480$50824e40@iboats.com
обсуждение исходный текст
Ответы Re: Delete w/ regexp  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
Список pgsql-general
   On one of our tables, this works fine:

select * from images where path ~* 'packages/site_system';

  However, this:

delete from images where path ~* 'packages/site_system';

  will make it work for a second or two, then give:

pqReadData() -- backend closed the channel unexpectedly.
        This probably means the backend terminated abnormally
        before or while processing the request.
The connection to the server was lost. Attempting reset: Failed.

   This is with Postgres 7.0.2.  Any ideas what's going on?

steve



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

Предыдущее
От: Matthew Hixson
Дата:
Сообщение: Re: syntax error 44 : ->
Следующее
От: "Steve Wolfe"
Дата:
Сообщение: Re: Delete w/ regexp