<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Waiting for 8.5 &#8211; Have \d show child tables that inherit from the specified parent</title>
	<atom:link href="http://www.depesz.com/index.php/2009/07/04/waiting-for-8-5-have-d-show-child-tables-that-inherit-from-the-specified-parent/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.depesz.com/index.php/2009/07/04/waiting-for-8-5-have-d-show-child-tables-that-inherit-from-the-specified-parent/</link>
	<description></description>
	<lastBuildDate>Thu, 29 Jul 2010 21:40:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Scott C.</title>
		<link>http://www.depesz.com/index.php/2009/07/04/waiting-for-8-5-have-d-show-child-tables-that-inherit-from-the-specified-parent/comment-page-1/#comment-29776</link>
		<dc:creator>Scott C.</dc:creator>
		<pubDate>Mon, 10 May 2010 06:28:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.depesz.com/?p=1443#comment-29776</guid>
		<description>@Robert

Yup, I&#039;ll have to remember not to use \d+ on my parent tables with ~7500 children.</description>
		<content:encoded><![CDATA[<p>@Robert</p>
<p>Yup, I&#8217;ll have to remember not to use \d+ on my parent tables with ~7500 children.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Treat</title>
		<link>http://www.depesz.com/index.php/2009/07/04/waiting-for-8-5-have-d-show-child-tables-that-inherit-from-the-specified-parent/comment-page-1/#comment-27871</link>
		<dc:creator>Robert Treat</dc:creator>
		<pubDate>Wed, 08 Jul 2009 18:18:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.depesz.com/?p=1443#comment-27871</guid>
		<description>I think the unfortunate thing about this is that it makes \d+ pretty much unusable on parent tables of large partition schemes.</description>
		<content:encoded><![CDATA[<p>I think the unfortunate thing about this is that it makes \d+ pretty much unusable on parent tables of large partition schemes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Fetter</title>
		<link>http://www.depesz.com/index.php/2009/07/04/waiting-for-8-5-have-d-show-child-tables-that-inherit-from-the-specified-parent/comment-page-1/#comment-27865</link>
		<dc:creator>David Fetter</dc:creator>
		<pubDate>Mon, 06 Jul 2009 13:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.depesz.com/?p=1443#comment-27865</guid>
		<description>@depesz
I&#039;ve seen it in multi-level partitioning schemes.  Whether *those* are a good idea is a whole different question.</description>
		<content:encoded><![CDATA[<p>@depesz<br />
I&#8217;ve seen it in multi-level partitioning schemes.  Whether *those* are a good idea is a whole different question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: depesz</title>
		<link>http://www.depesz.com/index.php/2009/07/04/waiting-for-8-5-have-d-show-child-tables-that-inherit-from-the-specified-parent/comment-page-1/#comment-27861</link>
		<dc:creator>depesz</dc:creator>
		<pubDate>Mon, 06 Jul 2009 08:22:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.depesz.com/?p=1443#comment-27861</guid>
		<description>@David Fetter:
not sure. I have seen 2 uses for inherited tables so far, and none of them is really useful with multi-level inheritance, but maybe I&#039;m missing some cases.</description>
		<content:encoded><![CDATA[<p>@David Fetter:<br />
not sure. I have seen 2 uses for inherited tables so far, and none of them is really useful with multi-level inheritance, but maybe I&#8217;m missing some cases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Fetter</title>
		<link>http://www.depesz.com/index.php/2009/07/04/waiting-for-8-5-have-d-show-child-tables-that-inherit-from-the-specified-parent/comment-page-1/#comment-27860</link>
		<dc:creator>David Fetter</dc:creator>
		<pubDate>Mon, 06 Jul 2009 01:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.depesz.com/?p=1443#comment-27860</guid>
		<description>I noticed something when making a deeper hierarchy, namely that it descends just one level.  I think this may count as a POLA violation.  What do you think?


CREATE TABLE x (id INTEGER);
CREATE TABLE x_01 () inherits (x);
CREATE TABLE x_02 () inherits (x);
CREATE TABLE x_01_01 () inherits (x_01);
CREATE TABLE x_01_02 () inherits (x_01);

\d+ x
                   Table &quot;public.x&quot;
 Column &#124;  Type   &#124; Modifiers &#124; Storage &#124; Description 
--------+---------+-----------+---------+-------------
 id     &#124; integer &#124;           &#124; plain   &#124; 
Child tables: x_01,
              x_02
Has OIDs: no
</description>
		<content:encoded><![CDATA[<p>I noticed something when making a deeper hierarchy, namely that it descends just one level.  I think this may count as a POLA violation.  What do you think?</p>
<p>CREATE TABLE x (id INTEGER);<br />
CREATE TABLE x_01 () inherits (x);<br />
CREATE TABLE x_02 () inherits (x);<br />
CREATE TABLE x_01_01 () inherits (x_01);<br />
CREATE TABLE x_01_02 () inherits (x_01);</p>
<p>\d+ x<br />
                   Table &#8220;public.x&#8221;<br />
 Column |  Type   | Modifiers | Storage | Description<br />
&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;-<br />
 id     | integer |           | plain   |<br />
Child tables: x_01,<br />
              x_02<br />
Has OIDs: no</p>
]]></content:encoded>
	</item>
</channel>
</rss>
