From: | Robert Haas <rhaas(at)postgresql(dot)org> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Fix more things to be parallel-safe. |
Date: | 2016-05-03 18:45:42 |
Message-ID: | E1axfKI-00073l-UG@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Fix more things to be parallel-safe.
Conversion functions were previously marked as parallel-unsafe, since
that is the default, but in fact they are safe. Parallel-safe
functions defined in pg_proc.h and redefined in system_views.sql were
ending up as parallel-unsafe because the redeclarations were not
marked PARALLEL SAFE. While editing system_views.sql, mark ts_debug()
parallel safe also.
Andreas Karlsson
Branch
------
master
Details
-------
http://git.postgresql.org/pg/commitdiff/9888b34fdb169c1f0982ad700fc6d43e8b7aec14
Modified Files
--------------
src/backend/catalog/system_views.sql | 16 ++++++++--------
src/backend/utils/mb/conversion_procs/Makefile | 2 +-
src/include/catalog/catversion.h | 2 +-
3 files changed, 10 insertions(+), 10 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Alexander Korotkov | 2016-05-03 18:47:41 | Re: Re: pgsql: Fix assorted inconsistencies in GIN opclass support function dec |
Previous Message | Andres Freund | 2016-05-03 15:39:54 | Re: Re: [COMMITTERS] pgsql: Avoid extra locks in GetSnapshotData if old_snapshot_threshold < |