Remove not-really-standard implementation of CREATE TABLE's UNDER clause,

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 2fb6cc904555024ef668f5ba096b5bf0ddd3ec26
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2001-01-05T06:34:23Z
Releases: 7.1.1
Remove not-really-standard implementation of CREATE TABLE's UNDER clause,
and revert documentation to describe the existing INHERITS clause
instead, per recent discussion in pghackers.  Also fix implementation
of SQL_inheritance SET variable: it is not cool to look at this var
during the initial parsing phase, only during parse_analyze().  See
recent bug report concerning misinterpretation of date constants just
after a SET TIMEZONE command.  gram.y really has to be an invariant
transformation of the query string to a raw parsetree; anything that
can vary with time must be done during parse analysis.

Files