Re: pg_atoi error

From: Oleg Lebedev <olebedev(at)waterford(dot)org>
To: Postgres SQL Mailing List <pgsql-sql(at)postgresql(dot)org>
Subject: Re: pg_atoi error
Date: 2002-02-12 21:35:24
Message-ID: 3C698A9C.C2DFA3A7@waterford.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Never mind my previous message.
It turns out that the name of the variable I was using inside a function was
the same as one of the column names in the record I used inside a loop.
thanks,

Oleg

Oleg Lebedev wrote:

> Hi everybody,
> I am getting the following error when calling a procedure on one
> database, but the same procedure runs ok on another database, which is a
> smaller instance of the former database:
> ERROR: pg_atoi: error in "Production": can't parse "Production"
>
> Inside the procedure I am trying to compare one of the table fields to
> ''Procedure'' as follows:
> ..
> IF OLD.status != ''Procedure''
> AND NEW.status=''Procedure''
> ...
>
> I have no idea what can cause this.
> Please help.
>
> thanks,
>
> Oleg
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Jean-Luc Lachance 2002-02-12 22:49:52 Re: UNION and rows improperly unified: query optimization question
Previous Message Oleg Lebedev 2002-02-12 21:08:53 pg_atoi error