Re: lower function - Mailing list pgsql-general

From Mage
Subject Re: lower function
Date
Msg-id 42543C2B.2080005@mage.hu
Whole thread Raw
In response to Re: lower function  (Mage <mage@mage.hu>)
Responses Re: lower function  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
It's serious.

teszt=# select lower('AúéöÖÉÁ');
  lower
---------
 aúéööéá
(1 row)

teszt=# create or replace function keywords_split(text) returns text as $$
teszt$# return '';
teszt$# $$
teszt-# language plperlu;
CREATE FUNCTION
teszt=# select keywords_split('');
 keywords_split
----------------

(1 row)

teszt=# select lower('AúéöÖÉÁ');
  lower
---------
 aúéöÖÉÁ
(1 row)


          Mage


pgsql-general by date:

Previous
From: "John Liu"
Date:
Subject: bytea vs large object in version 8
Next
From: Tom Lane
Date:
Subject: Re: Problems with Set Returning Functions (SRFs)