Re: BUG #4650: can't specify table schema in CREATE TABLE AS - Mailing list pgsql-bugs

From Gurjeet Singh
Subject Re: BUG #4650: can't specify table schema in CREATE TABLE AS
Date
Msg-id 65937bea0902120549x67f38a1axe540f9cd3c6ce49d@mail.gmail.com
Whole thread Raw
In response to BUG #4650: can't specify table schema in CREATE TABLE AS  ("Thue Janus Kristensen" <thuejk@gmail.com>)
List pgsql-bugs
On Thu, Feb 12, 2009 at 6:22 PM, Thue Janus Kristensen <thuejk@gmail.com>wrote:

>
> The following bug has been logged online:
>
> Bug reference:      4650
> Logged by:          Thue Janus Kristensen
> Email address:      thuejk@gmail.com
> PostgreSQL version: 8.3.5
> Operating system:   Linux
> Description:        can't specify table schema in CREATE TABLE AS
> Details:
>
> According to
> http://www.postgresql.org/docs/8.3/interactive/sql-createtableas.html ,
> the
> following should work:
>
> CREATE TABLE test(a INT) AS (SELECT 1);
>
> However:
>
> k3_dev_tjk=> CREATE TABLE test(a INT) AS (SELECT 1);
> ERROR:  syntax error at or near "AS"
> LINE 1: CREATE TABLE test(a INT) AS (SELECT 1);
>
> It works if I drop the table schema:
>
> k3_dev_tjk=> CREATE TABLE test AS (SELECT 1);
> SELECT
>

Look closely, it says just column names, not their datatypes. So the command
should be:

CREATE TABLE test(a) AS (SELECT 1);

Best regards,
--
gurjeet[.singh]@EnterpriseDB.com
singh.gurjeet@{ gmail | hotmail | indiatimes | yahoo }.com

EnterpriseDB      http://www.enterprisedb.com

Mail sent from my BlackLaptop device

pgsql-bugs by date:

Previous
From: Konstantin
Date:
Subject: Re: BUG #4648: needless deadlock on tables having foreign-key
Next
From: Heikki Linnakangas
Date:
Subject: Re: BUG #4648: needless deadlock on tables having foreign-key