Re: Updates failing yet saying they succeeded. - Mailing list pgsql-general

From Stephan Szabo
Subject Re: Updates failing yet saying they succeeded.
Date
Msg-id 20020603222816.V98598-100000@megazone23.bigpanda.com
Whole thread Raw
In response to Updates failing yet saying they succeeded.  (Oliver Jones <oliver@deeper.co.nz>)
List pgsql-general
On 4 Jun 2002, Oliver Jones wrote:

> I've been having a few problems with PgSQL not updateing data
> correctly.  Here is some evidence:
>
> autosupply_co_jp=> update vehicle set fob_price =420000 where
> chassis_number
> autosupply_co_jp-> = 'RA2-1002998';
> UPDATE 1
> autosupply_co_jp=> select fob_price from vehicle where chassis_number =
> 'RA2-1042998';
>  fob_price
> -----------
>     430000
> (1 row)
>
> autosupply_co_jp=> update vehicle set fob_price = 420000 where
> chassis_number = 'RA2-1042998';
> UPDATE 1
> autosupply_co_jp=> select fob_price from vehicle where chassis_number =
> 'RA2-1042998';
>  fob_price
> -----------
>     420000
> (1 row)
>
> WTF is up with that?

Is that a copy/paste error that the chassis numbers don't match in those
first statements?


pgsql-general by date:

Previous
From: Oliver Jones
Date:
Subject: Re: Updates failing yet saying they succeeded.
Next
From: Ron Snyder
Date:
Subject: Re: Updates failing yet saying they succeeded.