Re: Odd PL/PgSQL Error -- relation "X" does not exist when using index expression - Mailing list pgsql-sql

From Michael Fuhr
Subject Re: Odd PL/PgSQL Error -- relation "X" does not exist when using index expression
Date
Msg-id 20070208150746.GA77230@winnie.fuhr.org
Whole thread Raw
In response to Re: Odd PL/PgSQL Error -- relation "X" does not exist when using index expression  (Alvaro Herrera <alvherre@commandprompt.com>)
Responses Re: Odd PL/PgSQL Error -- relation "X" does not exist when using index expression
List pgsql-sql
On Thu, Feb 08, 2007 at 11:14:33AM -0300, Alvaro Herrera wrote:
> Michael Fuhr wrote:
> > The error appears to happen for anything that uses SPI.  A C function
> > that executes the following fails with the same error:
> > 
> > SPI_exec("CREATE TABLE foo (t text); CREATE INDEX foo_idx ON foo (lower(t))", 0);
> 
> Hmm, are we short of a CommandCounterIncrement in the middle of both
> commands?  Does the same error show up if you do
> 
> SPI_exec("CREATE TABLE foo (t text);", 0);
> SPI_exec("CREATE INDEX foo_idx ON foo (lower(t))", 0);

Using separate calls to SPI_exec() works.  Using a single call to
SPI_exec() works if the index is on (t) instead of (lower(t)):

SPI_exec("CREATE TABLE foo (t text); CREATE INDEX foo_idx ON foo (t)", 0);

-- 
Michael Fuhr


pgsql-sql by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: Odd PL/PgSQL Error -- relation "X" does not exist when using index expression
Next
From: "Wilkinson, Jim"
Date:
Subject: unsubscribe