Bug with dump/restore when using UNION and ORDER BY in views

Поиск
Список
Период
Сортировка
От Kristian Eide
Тема Bug with dump/restore when using UNION and ORDER BY in views
Дата
Msg-id 036501c23b32$5c5149f0$6b97f181@speed
обсуждение исходный текст
Ответы Re: Bug with dump/restore when using UNION and ORDER BY in views  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-sql
There seems to be a bug when dumping a view which is a UNION of selects, one
of which has an ORDER BY. A pair of paranthesises around the select is
missing, and this cause a subsequent restore to fail. This is quite annoying
as the backup file must be manually edited before it can be restored, and I
would really appreciate a solution in a future version of Postgre.

This problem is still present in 7.2.1.

Example:

CREATE TABLE t (id INT);
CREATE VIEW v AS (SELECT id FROM t AS t1 ORDER BY id) UNION SELECT id FROM t
AS t2;

After a dump it looks like this:

CREATE VIEW "v" as SELECT t1.id FROM t t1 ORDER BY t1.id UNION SELECT t2.id
FROM t t2;

Which is not accepted by postgre.


Regards,

Kristian




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

Предыдущее
От: "Kristian Eide"
Дата:
Сообщение: VACUUM not doing its job?
Следующее
От: Ken Corey
Дата:
Сообщение: Re: VACUUM not doing its job?