Re: "set autocommit on" in golang client query

From: Guillaume Lelarge <guillaume(at)lelarge(dot)info>
To: Rory Campbell-Lange <rory(at)campbell-lange(dot)net>
Cc: "pgsql-generallists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: "set autocommit on" in golang client query
Date: 2022-08-01 13:18:35
Message-ID: CAECtzeX5U0GWnVVBeDvM81Zv=TWVrXOLft+x7rE0OVQ0sCAF9A@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi,

Le lun. 1 août 2022 à 15:10, Rory Campbell-Lange <rory(at)campbell-lange(dot)net>
a écrit :

> Apologies for the rather naive question.
>
> I have a psql migration script to call a looping procedure which commits
> batches of data along the following lines:
>
> set search_path = a, b c;
> \set AUTOCOMMIT on
> -- call procedure with nested transactions
> CALL c.pr_my_procedure(debug=>true);
>
> I'm trying to migrate this to a programme using the golang pgx module to
> exec
> this code on a large number of databases in parallel. There doesn't seem an
> obvious way of setting autocommit outside of psql, so the equivalent of
>
> conn.Exec(context.Background(),
> "set search_path = a, b c; set AUTOCOMMIT on; CALL
> c.pr_my_procedure(debug=>true);")
>
> fails with
>
> ERROR: syntax error at or near "ON"
>
> while
>
> conn.Exec(context.Background(),
> "set search_path = a, b c; CALL
> c.pr_my_procedure(debug=>true);")
>
> fails with
>
> ERROR: invalid transaction termination
>
> How should I set autocommit on? The "Create Procedure" docs at
> https://www.postgresql.org/docs/current/sql-createprocedure.html don't
> seem to
> mention autocommit.
>
>
That's because it doesn't exist on the PostgreSQL server. You can use it
with psql but that's a psql feature, not the server's.

--
Guillaume.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Marcin Barczyński 2022-08-01 15:48:34 Inconsistent permission enforcement for schemas
Previous Message Rory Campbell-Lange 2022-08-01 13:10:00 "set autocommit on" in golang client query