SPI Interface to Call Procedure with Transaction Control Statements?

Поиск
Список
Период
Сортировка
От Jack LIU
Тема SPI Interface to Call Procedure with Transaction Control Statements?
Дата
Msg-id CABZ0cG1eqp2ujK1gfR2b-pV6jZopGB6JGX1dFjiiK+d3+OwBOw@mail.gmail.com
обсуждение исходный текст
Ответы Re: SPI Interface to Call Procedure with Transaction Control Statements?  (Andrew Gierth <andrew@tao11.riddles.org.uk>)
Список pgsql-hackers
Hi All,

I sent an email with the same problem in pgsql-general mailing but no one has responded, so I try to reach out by asking this question in the hacker list.

In PG-11, procedures were introduced. In the pg_partman PostgreSQL extension, a procedure named run_maintenance_proc was developed to replace run_maintenance function. I was trying to call this procedure in pg_partman with SPI_execute() interface and this is the command being executed:
CALL "partman".run_maintenance_proc(p_analyze := true, p_jobmon := true)


 I received the following error:
2019-01-02 20:13:04.951 PST [26446] ERROR:  invalid transaction termination
2019-01-02 20:13:04.951 PST [26446] CONTEXT:  PL/pgSQL function partman.run_maintenance_proc(integer,boolean,boolean,boolean) line 45 at COMMIT
Apparently, the transaction control command 'COMMIT' is not allowed in a procedure CALL function. But I can CALL this procedure in psql directly.

According to the documentation of CALL, "If CALL is executed in a transaction block, then the called procedure cannot execute transaction control statements. Transaction control statements are only allowed if CALL is executed in its own transaction.

Therefore, it looks like that SPI_execute() is calling the procedure within a transaction block. So Is there any SPI interface that can be used in an extension library to call a procedure with transaction control commands? (I tried to use SPI_connect_ext(SPI_OPT_NONATOMIC) to establish a nonatomic  connection but it doesn't help.)

Thanks,

Jiayi Liu

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

Предыдущее
От: Craig Ringer
Дата:
Сообщение: Re: Reviving the "Stopping logical replication protocol" patch fromVladimir Gordichuk
Следующее
От: Andrew Gierth
Дата:
Сообщение: Re: SPI Interface to Call Procedure with Transaction Control Statements?