Re: Second question on schemas and INDEX(es) ... - Mailing list pgsql-hackers

From Andrew Dunstan
Subject Re: Second question on schemas and INDEX(es) ...
Date
Msg-id 3F8DAE45.1000804@dunslane.net
Whole thread Raw
In response to Second question on schemas and INDEX(es) ...  ("Marc G. Fournier" <scrappy@hub.org>)
List pgsql-hackers
Marc G. Fournier wrote:

>Okay, after feeling stupid about the last one (altho I hadn't thought to
>read the CREATE INDEX page, only the CREATE SCHEMA one), I really hate to
>ask this one ... but ... is this documented somewhere also:
>
>CREATE SCHEMA company_00244
>  CREATE TABLE traffic ( ip_id int4, port int4, bytes bigint, runtime timestamp )
>  CREATE INDEX traffic_dist ON traffic USING BTREE ( ip_id, port )
>  CREATE INDEX traffic_time ON traffic USING btree ( hour_trunc(runtime));
>
>ERROR:  parser: parse error at or near "INDEX" at character 122
>
>or, is there an obvious error that I'm just not seeing?
>
>The CREATE SCHEMA page shows CREATE TABLE and CREATE VIEW, so should I
>consider CREATE INDEX no supported since it wasn't part of the example?
>
>  
>
Again the manual is your friend ... create schema says:

/schema_element/
   An SQL statement defining an object to be created within the schema.   Currently, only CREATE TABLE, CREATE VIEW,
andGRANT are accepted as   clauses within CREATE SCHEMA. Other kinds of objects may be created   in separate commands
afterthe schema is created
 
   cheers
   andrew





pgsql-hackers by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: Second question on schemas and INDEX(es) ...
Next
From: Robert Treat
Date:
Subject: Re: Second question on schemas and INDEX(es) ...