Re: [HACKERS] 6.5 cvs: views doesn't survives after pg_dump (fwd)

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: Oleg Bartunov <oleg(at)sai(dot)msu(dot)su>
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] 6.5 cvs: views doesn't survives after pg_dump (fwd)
Date: 1999-07-07 19:03:58
Message-ID: 199907071903.PAA06474@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


Looks like this was fixed in 6.5.

> I just checked the problem with views using current cvs and it's
> stell here.
>
> Regards,
>
> Oleg
>
> _____________________________________________________________
> Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
> Sternberg Astronomical Institute, Moscow University (Russia)
> Internet: oleg(at)sai(dot)msu(dot)su, http://www.sai.msu.su/~megera/
> phone: +007(095)939-16-83, +007(095)939-23-83
>
> ---------- Forwarded message ----------
> Date: Thu, 13 May 1999 19:46:50 +0400 (MSD)
> From: Oleg Bartunov <oleg(at)sai(dot)msu(dot)su>
> To: pgsql-hackers(at)postgreSQL(dot)org
> Subject: [HACKERS] 6.5 cvs: views doesn't survives after pg_dump
>
> After dumping (by pg_dump) and restoring views becomes a tables
>
> Here is a simple scenario:
> 1. createdb tview
>
> 2. create table t1 (a int4, b int4);
> create view v1 as select a from t1;
>
> 3. pg_dump -z tview > tview.dump
> 4. destroydb tview
>
> createdb tview
>
> 5. psql -e tview < tview.dump
> ............................
> QUERY: COPY "t1" FROM stdin;
> CREATE RULE "_RETv1" AS ON SELECT TO "v1" WHERE DO INSTEAD SELECT "a" FROM "t1";
> QUERY: CREATE RULE "_RETv1" AS ON SELECT TO "v1" WHERE DO INSTEAD SELECT "a" FROM "t1";
> ERROR: parser: parse error at or near "do"
> EOF
>
> 6. psql tview
>
> tview=> \dt
> Database = tview
> +------------------+----------------------------------+----------+
> | Owner | Relation | Type |
> +------------------+----------------------------------+----------+
> | megera | t1 | table |
> | megera | v1 | table |
> +------------------+----------------------------------+----------+
>
> tview=>
>
> view t1 now becomes table v1 !
>
> Regards,
>
> Oleg
> _____________________________________________________________
> Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
> Sternberg Astronomical Institute, Moscow University (Russia)
> Internet: oleg(at)sai(dot)msu(dot)su, http://www.sai.msu.su/~megera/
> phone: +007(095)939-16-83, +007(095)939-23-83
>
>
>
>

--
Bruce Momjian | http://www.op.net/~candle
maillist(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bob Devine 1999-07-07 19:20:51 Re: [HACKERS] Fwd: Joins and links
Previous Message Bruce Momjian 1999-07-07 18:55:34 Re: [HACKERS] Broken select on regular expression !!!