Fix more things to be parallel-safe.

Robert Haas <rhaas@postgresql.org>

Commit: 9888b34fdb169c1f0982ad700fc6d43e8b7aec14
Author: Robert Haas <rhaas@postgresql.org>
Date: 2016-05-03T18:36:38Z
Releases: 9.6.0
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

Files