Re: [BUGS] BUG #8385: greek symbols as function name

2013-08-18 Thread Kevin Grittner
Tom Lane wrote: > Kevin Grittner writes: >> It occurs to me that the behavior you are seeing would be >> consistent with 945 being considered an uppercase letter, with >> 60536 being considered its lowercase form.  Normal PostgreSQL >> case-folding of identifiers would then cause exactly the symp

Re: [BUGS] BUG #8385: greek symbols as function name

2013-08-18 Thread Tom Lane
Kevin Grittner writes: > It occurs to me that the behavior you are seeing would be > consistent with 945 being considered an uppercase letter, with > 60536 being considered its lowercase form.  Normal PostgreSQL > case-folding of identifiers would then cause exactly the symptoms > you are seeing.

Re: [BUGS] BUG #8385: greek symbols as function name

2013-08-18 Thread Kevin Grittner
Kevin Grittner wrote: > Whether it is a bug in Windows or in PostgreSQL character- > handling under Windows I can say myself, since I haven't > had any reason to use Windows for years. Er, that should have been I *can't* say. >> create or replace function α(β int, ξ int, μ float) returns float

Re: [BUGS] BUG #8385: greek symbols as function name

2013-08-18 Thread Kevin Grittner
"kol...@hotmail.com" wrote: > Operating system:  Windows 8 > 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 6053

[BUGS] BUG #8385: greek symbols as function name

2013-08-16 Thread kolmyk
The following bug has been logged on the website: Bug reference: 8385 Logged by: Alessio Email address: kol...@hotmail.com PostgreSQL version: 9.2.3 Operating system: Windows 8 Description: create or replace function α(β int, ξ int, μ float) returns float as $$ select