Re: Substring auto trim

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: Substring auto trim
Дата
Msg-id 162867791001130536w4a14520bobc67d1c7e7e47862@mail.gmail.com
обсуждение исходный текст
Ответ на Substring auto trim  ("Charles O'Farrell" <charleso@gmail.com>)
Ответы Re: Substring auto trim  (Pavel Stehule <pavel.stehule@gmail.com>)
Список pgsql-bugs
Hello

2010/1/13 Charles O'Farrell <charleso@gmail.com>:
> Hi guys,
>
> I'm not sure whether this a really dumb question, but I'm curious as to w=
hat
> might be the problem.
>
> We have a column 'foo' which is of type character (not varying).
>
> select substr(foo, 1, 10) from bar
>
> The result of this query are values whose trailing spaces have been trimm=
ed
> automatically. This causes incorrect results when comparing to a value th=
at
> may contain trailing spaces.
>
> select * from bar where substr(foo, 1, 4) =3D 'AB=C2=A0 '
>

You have to write C function substr for type "any" :( Because "char"
and char(n) are two different types, and you cannot to write function
for char(n)


> I should mention that we normally run Oracle and DB2 (and have done for m=
any
> years), but I have been pushing for Postgres as an alternative.
> Fortunately this is all handled through Hibernate, and so for now I have
> wrapped the substr command in rpad which seems to do the trick.
>
> Any light you can shed on this issue would be much appreciated.
>

Function substr has first parameter of type "text". When pg call this
function, then it does conversion from char(x) to text.

Regards
Pavel Stehule


> Cheers,
>
> Charles O'Farrell
>
> PostgreSQL 8.4.2 on i486-pc-linux-gnu, compiled by GCC gcc-4.4.real (Ubun=
tu
> 4.4.1-4ubuntu8) 4.4.1, 32-bit
>

В списке pgsql-bugs по дате отправления:

Предыдущее
От: "Charles O'Farrell"
Дата:
Сообщение: Substring auto trim
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: Substring auto trim