DELETE/DROP and inheritance
От | Albert REINER |
---|---|
Тема | DELETE/DROP and inheritance |
Дата | |
Msg-id | 19991011135548.A194@frithjof обсуждение исходный текст |
Ответы |
Re: [SQL] DELETE/DROP and inheritance
|
Список | pgsql-sql |
Why don't DELETE and DROP work with the *-notation for inherited tables? I think they should, and I don't see why it should be difficult to implement (but I cannot, not being C-literate). albert=> create database tst; CREATEDB albert=> \c tst connecting to new database: tst tst=> create table a (idint4); CREATE tst=> create table b (id2 int4) inherits (a); CREATE tst=> delete from a*; ERROR: parser: parseerror at or near "*" (here I would like to get "DELETE 0" instead) tst=> drop table a*; ERROR: parser: parse error at or near "a" (here I would like to get "DROP" instead) Bye, Albert. -- --------------------------------------------------------------------------- Post an / Mail to / Skribu al: Albert Reiner<areiner@tph.tuwien.ac.at> ---------------------------------------------------------------------------
В списке pgsql-sql по дате отправления: