BUG #8385: greek symbols as function name - Mailing list pgsql-bugs

From kolmyk@hotmail.com
Subject BUG #8385: greek symbols as function name
Date
Msg-id E1VAFvb-00008C-Qg@wrigleys.postgresql.org
Whole thread Raw
Responses Re: BUG #8385: greek symbols as function name
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      8385
Logged by:          Alessio
Email address:      kolmyk@hotmail.com
PostgreSQL version: 9.2.3
Operating system:   Windows 8
Description:

create or replace function α(β int, ξ int, μ float) returns float as $$
select (β + ξ) * μ $$ language sql;
select α(1, 2, 0.1);
-- it works
select ascii(proname), * from pg_proc where length(proname) = 1;
-- return code 60536 although select ascii('α') retruns 945
select * from pg_proc where proname = 'α';
-- returns nothing

pgsql-bugs by date:

Previous
From: "Cal Martin"
Date:
Subject:
Next
From: Ralph Loader
Date:
Subject: Bad pg_stats.correlation with repeated keys.