<p>Hi,
<p>In postgres we define 2 or more plpgsql functions that have
different args. I did notice that some plpgsql functions that was
defined reorder their args rather than just add to it.
<p>Example.
<P>
function foo(name, email, id)
<br>function foo(email, name, group, id)
<br>function foo(id, name, group, email, address)
<p>Why are the args mixed from one function to another rather than using?
<p>
function foo(name, email, id)
<br>function foo(name, email, id, group)
<br>function foo(name, email, id, group, address)
<p>Is the reordering of the args in plpgsql intentional? Or is it
just a case of bad coding?