Re: [HACKERS] WIP: named and mixed notation support

2009-03-01 Thread Pavel Stehule
2009/3/2 Tom Lane : > Pavel Stehule writes: >> postgres=# create function dfunc(a int, b int = 1, c int) returns >> table (a int, b int, c int) as $$ >>   select $1, $2, $3; >> $$ language sql; > > The above is simply a horrid idea.  It'll completely break any ability > to resolve ambiguous functi

Re: [HACKERS] WIP: named and mixed notation support

2009-03-01 Thread Tom Lane
Pavel Stehule writes: > postgres=# create function dfunc(a int, b int = 1, c int) returns > table (a int, b int, c int) as $$ > select $1, $2, $3; > $$ language sql; The above is simply a horrid idea. It'll completely break any ability to resolve ambiguous function calls in a sane way. What,