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

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: Odd PL/PgSQL Error -- relation "X" does not exist when using index expression
Дата
Msg-id 20070208150746.GA77230@winnie.fuhr.org
обсуждение исходный текст
Ответ на Re: Odd PL/PgSQL Error -- relation "X" does not exist when using index expression  (Alvaro Herrera <alvherre@commandprompt.com>)
Ответы Re: Odd PL/PgSQL Error -- relation "X" does not exist when using index expression  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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 по дате отправления:

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: Odd PL/PgSQL Error -- relation "X" does not exist when using index expression
Следующее
От: "Wilkinson, Jim"
Дата:
Сообщение: unsubscribe