Re: Second question on schemas and INDEX(es) ...

From: Robert Treat <xzilla(at)users(dot)sourceforge(dot)net>
To: "Marc G(dot) Fournier" <scrappy(at)hub(dot)org>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: Second question on schemas and INDEX(es) ...
Date: 2003-10-15 20:34:04
Message-ID: 1066250044.2069.19.camel@camel
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Wed, 2003-10-15 at 16:20, Robert Treat wrote:
> On Wed, 2003-10-15 at 16:00, 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?
> >
>
> If I'm right your having a heck of a bad day, but I believe the problem
> is you have no ; after each of your sql statements...
>

Not that bad I guess ;-) I missed what you were trying to do, but
Stephen's email is on target. Note you can do in multiple statements
though...

Robert Treat
--
Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Marc G. Fournier 2003-10-15 20:44:31 Re: Second question on schemas and INDEX(es) ...
Previous Message Andrew Dunstan 2003-10-15 20:29:57 Re: Second question on schemas and INDEX(es) ...