python - be: Remove call argument overrides.

From: jwp(at)pgfoundry(dot)org (James William Pye)
To: pgsql-committers(at)postgresql(dot)org
Subject: python - be: Remove call argument overrides.
Date: 2005-12-14 16:15:29
Message-ID: 20051214161529.879071125049@pgfoundry.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Remove call argument overrides.

This is useful for state keeping calls that can take later arguments. Primarily,
non-SRF generators(plpy functions), and for optimizing repeat calls to Postgres
functions. However, the code expects a list for the already created arguments,
which is no longer the norm. So, defer to removing the code for now. Also, using
this feature requires that the user explicitly create the call object, which is
more or less a nuisance.

Modified Files:
--------------
be/src:
call.c (r1.10 -> r1.11)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/src/call.c.diff?r1=1.10&r2=1.11)

Browse pgsql-committers by date

  From Date Subject
Next Message User Fxjr 2005-12-14 16:17:57 npgsql - Npgsql: 2005-12-14 Francisco Figueiredo Jr.
Previous Message James William Pye 2005-12-14 15:34:48 python - be: Fix depth reduction in exceptions.