Dblink vs calling a function that returns void

Поиск
Список
Период
Сортировка
От Boszormenyi Zoltan
Тема Dblink vs calling a function that returns void
Дата
Msg-id 4BB0CBE3.8070508@cybertec.at
обсуждение исходный текст
Ответы Re: Dblink vs calling a function that returns void  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
Hi,

I need to call a function via dblink that returns a void, i.e.
technically nothing.

=# select public.dblink_exec('import', 'SELECT
import.add_one_word(''word'', true)');
ERROR:  statement returning results not allowed

=# select * from public.dblink('import', 'SELECT
import.add_one_word(''word'', true)') as x();
ERROR:  syntax error at or near ")"
LINE 1: ...ort', 'SELECT import.add_one_word(''iphon'', true)') as x();

=# select public.dblink('import', 'SELECT import.add_one_word(''word'',
true)') as x(x void);
ERROR:  syntax error at or near "("
LINE 1: ...'SELECT import.add_one_word(''iphon'', true)') as x(x void);

And, although RETURNS VOID is indistinguishable from returning a NULL:

=# select * from public.dblink('import', 'SELECT
import.add_one_word(''word'', true)') as x(x int);
ERROR:  invalid input syntax for integer: ""

So, how can I do it? Besides modifying the interface of the function,
say "RETURNS int4" and using PG_RETURN_NULL()?

Best regards,
Zoltán Böszörményi

--
Bible has answers for everything. Proof:
"But let your communication be, Yea, yea; Nay, nay: for whatsoever is more
than these cometh of evil." (Matthew 5:37) - basics of digital technology.
"May your kingdom come" - superficial description of plate tectonics

----------------------------------
Zoltán Böszörményi
Cybertec Schönig & Schönig GmbH
http://www.postgresql.at/


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

Предыдущее
От: "Andrus"
Дата:
Сообщение: Re: ***SPAM*** Re: Splitting text column to multiple rows
Следующее
От: 赤松 建司
Дата:
Сообщение: