Fix more things to be parallel-safe

Enterprise / PostgreSQL - Robert Haas [postgresql.org] - 3 May 2016 13:36 UTC

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

9888b34 Fix more things to be parallel-safe.
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(-)

Upstream: git.postgresql.org


  • Share