From: | Vladimir Jovanovic <vladimir(dot)jovanovic(at)aparteko(dot)com> |
---|---|
To: | Heikki Linnakangas <hlinnakangas(at)vmware(dot)com> |
Cc: | pgsql-bugs(at)postgresql(dot)org |
Subject: | Re: BUG #8168: duplicated function signature |
Date: | 2013-05-17 15:53:10 |
Message-ID: | CADkRnnitW8ZdkLZyXXRuL2uqE3F=-ARKKbpDL2a84Vwp4vMz1A@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
Hi Heikki,
Here you can find attached .csv semicolon separated made by :"SELECT * FROM
pg_proc WHERE proname LIKE 'sp_get_league_prediction".
"\df sp_get_league_prediction" is also attached.
Both functions are returning the same setof record:
---------------------------
CREATE OR REPLACE FUNCTION sp_get_league_prediction(IN _id bigint, IN _rank
integer, IN _log_in_expectence double precision, IN _feathers_gained
integer, IN _tokens_all integer, IN _tokens_active integer, IN _score
integer)
RETURNS SETOF record AS
$BODY$
...
---------------------------
CREATE OR REPLACE FUNCTION sp_get_league_prediction(_id bigint, _rank
integer, _log_in_expectence double precision, _feathers_gained integer,
_tokens_all integer, _tokens_active integer, _score integer)
RETURNS SETOF record AS
$BODY$
...
On Fri, May 17, 2013 at 4:11 PM, Heikki Linnakangas <hlinnakangas(at)vmware(dot)com
> wrote:
> On 17.05.2013 13:31, vladimir(dot)jovanovic(at)aparteko(dot)**com<vladimir(dot)jovanovic(at)aparteko(dot)com>wrote:
>
>> I noticed that I have two functions with the same signature.
>>
>> sp_get_league_prediction(IN _id bigint, IN _rank integer, IN
>> _log_in_expectence double precision, IN _feathers_gained integer, IN
>> _tokens_all integer, IN _tokens_active integer, IN _score integer)
>>
>> sp_get_league_prediction(_id bigint, _rank integer, _log_in_expectence
>> double precision, _feathers_gained integer, _tokens_all integer,
>> _tokens_active integer, _score integer)
>>
>
> In addition to higher-level checks, there is a unique index in the pg_proc
> catalog that should not let that happen, so to be honest, I find that hard
> to believe. Are you 100% they have the same signature? Are they in
> different schemas, perhaps? In psql, what does "\df
> sp_get_league_prediction" return?
>
> - Heikki
>
--
*Vladimir Jovanović* <http://www.aparteko.com/>
CELL: +381 64 211 79 79
OFFICE: + 381 11 314 86 38
E-MAIL: vladimir(dot)jovanovic(at)aparteko(dot)com
[image: Description: cid:image001(dot)png(at)01CD3D1C(dot)7D977930]
setting standards in social gaming development
Attachment | Content-Type | Size |
---|---|---|
df sp_league_prediction.txt | text/plain | 1.1 KB |
#8186.csv | text/csv | 863 bytes |
From | Date | Subject | |
---|---|---|---|
Next Message | Heikki Linnakangas | 2013-05-17 16:10:53 | Re: BUG #8168: duplicated function signature |
Previous Message | Tom Lane | 2013-05-17 14:39:38 | Re: BUG #8168: duplicated function signature |