Re: Pl/pgsql function

Поиск
Список
Период
Сортировка
От David Johnston
Тема Re: Pl/pgsql function
Дата
Msg-id 007901cc22ce$444a9e50$ccdfdaf0$@yahoo.com
обсуждение исходный текст
Ответ на Pl/pgsql function  (Nick Raj <nickrajjain@gmail.com>)
Список pgsql-general
>>From: pgsql-general-owner@postgresql.org
[mailto:pgsql-general-owner@postgresql.org] On Behalf Of Nick Raj
>>Sent: Saturday, June 04, 2011 10:04 AM
>>To: pgsql-general@postgresql.org
>>Subject: [GENERAL] Pl/pgsql function
>>
>>Second thing,
>>Suppose i defined a function test as
>>
>>select test('geom',the_geom,time) from tablename
>>.....
>>Inside body,
>>How can i get the tablename inside the body (because i haven't pass table
name to function)
>>......
>>end

Not possible; a function only has access to the specific things you provide
it.  If you explain why you want the "tablename" maybe alternatives can be
suggested.  The only time you get access to the table name is when you are
executing the function in the context of a trigger.

David J.


В списке pgsql-general по дате отправления:

Предыдущее
От: Rob Sargent
Дата:
Сообщение: Re: Pl/pgsql function
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Why are IDLE connections using cpu according to TOP.