BUG #8385: greek symbols as function name

From: kolmyk(at)hotmail(dot)com
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #8385: greek symbols as function name
Date: 2013-08-16 09:02:39
Message-ID: E1VAFvb-00008C-Qg@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 8385
Logged by: Alessio
Email address: kolmyk(at)hotmail(dot)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

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message bricklen 2013-08-16 15:04:11 Re:
Previous Message Ralph Loader 2013-08-15 23:36:48 Bad pg_stats.correlation with repeated keys.