Re: 'a' == 'a ' (Was: RE: [pgsql-advocacy] [GENERAL] Oracle buys - Mailing list pgsql-hackers

From Greg Stark
Subject Re: 'a' == 'a ' (Was: RE: [pgsql-advocacy] [GENERAL] Oracle buys
Date
Msg-id 87mzl59qqg.fsf@stark.xeocode.com
Whole thread Raw
List pgsql-hackers
"Guy Rouillier" <guyr@masergy.com> writes:

> Tino Wildenhain wrote:
> >
> > experiment=# SELECT 'a '::char = 'a  '::char;
> >  ?column?
> > ----------
> >  t
> >
>
> This does't show anything useful, because the ::char casting simply
> takes the first char of any string:
>
> select 'abc'::char = 'axy'::char
>
> Also results in 'true'.  Hopefully no one in this discussion would want
> those two strings to be equal.

A better experiment:

db=> select 'a '::char(3) = 'a  '::char(3);
 ?column?
----------
 t
(1 row)

--
greg

pgsql-hackers by date:

Previous
From: "Dann Corbit"
Date:
Subject: Re: 'a' == 'a ' (Was: RE: [pgsql-advocacy] [GENERAL] Oracle buysInnobase)
Next
From: "Dann Corbit"
Date:
Subject: Re: 'a' == 'a ' (Was: RE: [pgsql-advocacy] [GENERAL] Oracle buysInnobase)