public inbox for [email protected]
help / color / mirror / Atom feedCREATE TABLE LIKE
2+ messages / 2 participants
[nested] [flat]
* CREATE TABLE LIKE
@ 2004-03-15 08:32 Patrick Samson <[email protected]>
0 siblings, 1 reply; 2+ messages in thread
From: Patrick Samson @ 2004-03-15 08:32 UTC (permalink / raw)
To: pgsql-docs
In postgresql-7.4.1-US.pdf,
CREATE TABLE,
Parameters,
Like,
Unlike INHERITS, the new table and inherited table ...
^^^^^
I don't understand this sentence (but english is not
my language).
Shouldn't it be?
Unlike INHERITS, the new table and inherited columns
...
__________________________________
Do you Yahoo!?
Yahoo! Mail - More reliable, more storage, less spam
http://mail.yahoo.com
^ permalink raw reply [nested|flat] 2+ messages in thread
* Re: CREATE TABLE LIKE
@ 2004-03-22 16:21 Tom Lane <[email protected]>
parent: Patrick Samson <[email protected]>
0 siblings, 0 replies; 2+ messages in thread
From: Tom Lane @ 2004-03-22 16:21 UTC (permalink / raw)
To: Patrick Samson <[email protected]>; +Cc: pgsql-docs
Patrick Samson <[email protected]> writes:
> Unlike INHERITS, the new table and inherited table ...
> ^^^^^
> I don't understand this sentence (but english is not
> my language).
It doesn't seem to have been the language of the author of that paragraph,
either :-(
I've cleaned this up to read
Unlike <literal>INHERITS</literal>, the new table and original table
are completely decoupled after creation is complete. Changes to the
original table will not be applied to the new table, and it is not
possible to include data of the new table in scans of the original
table.
and added this to the description of INHERITS, just below:
<para>
Use of <literal>INHERITS</> creates a persistent relationship
between the new child table and its parent table(s). Schema
modifications to the parent(s) normally propagate to children
as well, and by default the data of the child table is included in
scans of the parent(s).
</para>
regards, tom lane
^ permalink raw reply [nested|flat] 2+ messages in thread
end of thread, other threads:[~2004-03-22 16:21 UTC | newest]
Thread overview: 2+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2004-03-15 08:32 CREATE TABLE LIKE Patrick Samson <[email protected]>
2004-03-22 16:21 ` Tom Lane <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox