tablename type?

Поиск
Список
Период
Сортировка
От des@des.no (Dag-Erling Smørgrav)
Тема tablename type?
Дата
Msg-id xzpk6wpuvo4.fsf@dwp.des.no
обсуждение исходный текст
Ответы Re: tablename type?
Список pgsql-general
The PL/PGSQL documentation contains at least two examples of functions
which take an argument of type "tablename", which then serves as a
table name in a query.  Here's one of those examples:

> CREATE FUNCTION concat_selected_fields(tablename) RETURNS text AS '
> DECLARE
>     in_t ALIAS FOR $1;
> BEGIN
>     RETURN in_t.f1 || in_t.f3 || in_t.f5 || in_t.f7;
> END;
> ' LANGUAGE plpgsql;

Typing this at the psql prompt, however, simply results in the
following message:

ERROR:  type tablename does not exist

Is the documentation incorrect, or is there something wrong with my
PostgreSQL 7.4.3 installation?

If the documentation is incorrect, is there another way to achieve
this, or do I have to use a varchar argument and construct and execute
a dynamic command?

DES
--
Dag-Erling Smørgrav - des@des.no

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Before/After trigger sequencing question
Следующее
От: Mike Nolan
Дата:
Сообщение: Re: Before/After trigger sequencing questiont