Re: Text cast problem - Mailing list pgsql-sql

From Adrian Klaver
Subject Re: Text cast problem
Date
Msg-id 200904030628.54639.aklaver@comcast.net
Whole thread Raw
In response to Text cast problem  ("Volkmar Herbst" <herbst@gc-i.de>)
List pgsql-sql
On Thursday 02 April 2009 2:51:30 am Volkmar Herbst wrote:
> Dear all-
>
> I encountered the following problem:
>
>
>
> select * from parcel where number = '255 '
>
> gives me 1 row but
>
>
>
> select * from parcel where number = '255 ' ::text
>
> does give me 0 rows. The cast removes the trailing empty character.
>
>
>
> Why is that? Unfortunately the statements are generated (NPGSQL) and I
> can’t change the way they are generated. What can I do? Any suggestions
> highly welcomed!

The why is here:
http://www.postgresql.org/docs/8.3/interactive/datatype-character.html

In particular:

"Values of type character are physically padded with spaces to the specified
width n, and are stored and displayed that way. However, the padding spaces are
treated as semantically insignificant. Trailing spaces are disregarded when
comparing two values of type character, and they will be removed when
converting a character value to one of the other string types. Note that
trailing spaces are semantically significant in character varying and text
values. "


What I have done in a similar situation is put a trigger on the table that trims
the strings on INSERT or UPDATE.

>
>
>
> Volkmar



--
Adrian Klaver
aklaver@comcast.net


pgsql-sql by date:

Previous
From: "Volkmar Herbst"
Date:
Subject: Text cast problem
Next
From: Adrian Klaver
Date:
Subject: Re: FUNCTION problem