Re: SQL99 feature list - Mailing list pgsql-hackers

From Hannu Krosing
Subject Re: SQL99 feature list
Date
Msg-id 1024495301.1441.136.camel@taru.tm.ee
Whole thread Raw
In response to SQL99 feature list  (Thomas Lockhart <lockhart@fourpalms.org>)
List pgsql-hackers
On Wed, 2002-06-19 at 08:23, Thomas Lockhart wrote:
> I've just updated features.sgml to have a list of supported features
> followed by a list of unsupported ones.

It seems you have to move (T171, LIKE clause in table definition) to
unsupported :

hannu=# \dt       List of relations Name   | Type  | Owner 
---------+-------+-------t1      | table | hannu
(1 row)

hannu=# create table t11 (a int,like t1);
ERROR:  parser: parse error at or near "like"

hannu=# create table t11 (a int) inherits (t1);
CREATE

-------------------
Hannu


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Roadmap for a Win32 port
Next
From: Tom Lane
Date:
Subject: Re: ecpg and bison again