Re: SQL99 feature list

From: Hannu Krosing <hannu(at)tm(dot)ee>
To: lockhart(at)fourpalms(dot)org
Cc: PostgreSQL Hackers List <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: SQL99 feature list
Date: 2002-06-19 14:01:41
Message-ID: 1024495301.1441.136.camel@taru.tm.ee
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Thomas Lockhart 2002-06-19 14:05:47 Re: SQL99 feature list
Previous Message Tom Lane 2002-06-19 13:54:52 Re: COPY syntax improvement