Re: best way to determine start of new statement within a function? (resend)

From: elein <elein(at)norcov(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Joe Conway <mail(at)joeconway(dot)com>, "Hackers (PostgreSQL)" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: best way to determine start of new statement within a function? (resend)
Date: 2003-07-25 17:24:08
Message-ID: 20030725102408.C3643@cookie
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

The semantics of this conceptually is not too
bad. The implementation could be tricky.

For any given DML or sub-DML (select, eg) the scope
should be for that DML. The DML is the "parent"
of the function. The DML is the statement
context and the function is the function
context.

statement --> function
|
+ --> statement --> function
|
+ --> statement
statement --> function1, function2
| |
| +--> statement -> function3
| |
| +--> statement
|
|
|
+ --> statement --> function4
|
+ --> statement

For example:

select myfunc() from foo; -- 1 statement

select myfunc() from (select myfunc2() from foo);
-- subselect ( select ): both actually
have the same memory duration, but have different
statement contexts and different function contexts.
-- the scope of each matches its select

select myfunc() from foo;
--where myfunc invokes select myfunc2() from bar;
The scope of myfunc is the parent select.
The scope of myfunc2 resets at each iteration of
myfunc(), but is available for each iteration of
itself. Note that these things can nest very
deeply.

select myfunc() from foo where myfunc3() = 't';
-- both myfunc() and myfunc3() have the same
statement parent.
-- if myfunc3() invoked select * from myfunc4()
then each iteration of myfunc3() resets the
statement context of that select.

The new statement corresponds to a single invocation
of one DML. Memory should last through the whole
invocation loop.

Am I making sense here?

Where does the function context info memory get
available for allocation and where does it
get deallocated? (It does get deallocated
via garbage collection, right?) I think the scope
of this is correct.

We implemented this at informix and got a lot of
stuff wrong. Memory pool hell, but we had to deal
with a multi-threaded server. Illustra did
it right so I think postgres already has the handles to
the hook the memory into the right scope.

Do you want me to try to write this up into
more formal definitions?

elein

On Fri, Jul 25, 2003 at 12:53:11AM -0400, Tom Lane wrote:
> Joe Conway <mail(at)joeconway(dot)com> writes:
> > Specifically I'd like to reset a variable within my PL/R interpreter
> > each time a new SQL statement begins.
>
> Define "new SQL statement". In particular, what of a PL function
> executing multiple SQL statements inside an outer SQL statement that
> invoked the function? Unless you've got a clear idea of the semantics
> you want, it's not going to be very profitable to discuss
> implementations ...
>
> regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faqs/FAQ.html
>

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2003-07-25 17:28:14 Re: Datetime patch
Previous Message elein 2003-07-25 17:19:02 Re: best way to determine start of new statement within