Re: Re: [SQL] renaming columns... danger?

Поиск
Список
Период
Сортировка
От Tatsuo Ishii
Тема Re: Re: [SQL] renaming columns... danger?
Дата
Msg-id 20010107151215W.t-ishii@sra.co.jp
обсуждение исходный текст
Ответ на Re: [SQL] renaming columns... danger?  (Grant Finnemore <gaf@ucs.co.za>)
Ответы Re: Re: [SQL] renaming columns... danger?  (Tatsuo Ishii <t-ishii@sra.co.jp>)
Список pgsql-hackers
As for the latest CVS source, it looks still we have problems
regarding alter table rename column and pg_dump as Grant has
mentioned.  Results of pg_dump is attached.

test=# create table a ( aa serial primary key );
NOTICE:  CREATE TABLE will create implicit sequence 'a_aa_seq' for SERIAL column 'a.aa'
NOTICE:  CREATE TABLE/PRIMARY KEY will create implicit index 'a_pkey' for table 'a'
CREATE
test=# alter TABLE a RENAME aa to new_aa;
ALTER
test=# \q
[t-ishii@srapc1474 current]$ pg_dump test > /tmp/aaa
[t-ishii@srapc1474 current]$ dropdb test
DROP DATABASE
[t-ishii@srapc1474 current]$ createdb test
CREATE DATABASE
[t-ishii@srapc1474 current]$ psql test < /tmp/aaa
Using pager is off.
You are now connected as new user t-ishii.
CREATE
ERROR:  CREATE TABLE: column "aa" named in key does not exist
UPDATE 53
ERROR:  Relation 'a' does not exist
invalid command \.
BEGIN
CREATE
INSERT 18819 1
UPDATE 1
DROP
COMMITsetval 
--------     1
(1 row)

[t-ishii@srapc1474 current]$ psql test
Welcome to psql, the PostgreSQL interactive terminal.

Type:  \copyright for distribution terms      \h for help with SQL commands      \? for help on internal slash commands
    \g or terminate with semicolon to execute query      \q to quit
 

Using pager is off.
test=# \dt
No relations found.
test=# 

------------------------------ attachments ------------------------------     Multipart/Mixed
               2/    1  Text/Plain(guess)                                         CoverPage*
 
B    2  Application/Octet-Stream                                  aaa.gz    3
                .
 
--------0-1-2-3-4-5-6-7-8-9----------------------------------------------


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

Предыдущее
От: The Hermit Hacker
Дата:
Сообщение: Re: beta2 bundled ... will officially announce sunday evening ...
Следующее
От: Tatsuo Ishii
Дата:
Сообщение: Re: Re: [SQL] renaming columns... danger?