Re: Extending PostgreSQL with a Domain-Specific Language (DSL) - Development

Поиск
Список
Период
Сортировка
От David G. Johnston
Тема Re: Extending PostgreSQL with a Domain-Specific Language (DSL) - Development
Дата
Msg-id CAKFQuwYgSpXD04nhy0vFySHQzr78pgV+gW-ntR7wxD=1SPrnHg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Extending PostgreSQL with a Domain-Specific Language (DSL) -Development  (Tom Mercha <mercha_t@hotmail.com>)
Список pgsql-hackers
On Tue, Jul 9, 2019 at 5:43 PM Tom Mercha <mercha_t@hotmail.com> wrote:
I am still a bit of a novice with PostgreSQL internals. Could you please
provide some more detail on your comment regarding affecting permanent
session state?

I was not referring to internals.

BEGIN;
CREATE TEMP TABLE tempdo (id int);
DO $$
BEGIN
INSERT INTO tempdo VALUES (1);
END;
$$;
SELECT * FROM tempdo;
ROLLBACK;

David J.
 

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: warning to publication created and wal_level is not set to logical
Следующее
От: Ryan Lambert
Дата:
Сообщение: Re: [Proposal] Table-level Transparent Data Encryption (TDE) and KeyManagement Service (KMS)