]> granicus.if.org Git - postgresql/commit
Fix more things to be parallel-safe.
authorRobert Haas <rhaas@postgresql.org>
Tue, 3 May 2016 18:36:38 +0000 (14:36 -0400)
committerRobert Haas <rhaas@postgresql.org>
Tue, 3 May 2016 18:36:38 +0000 (14:36 -0400)
commit9888b34fdb169c1f0982ad700fc6d43e8b7aec14
tree141326d6bcf5af5c1e86c07cada23fa16833b542
parent8826d850781cb328482c8f92af2a3d93385cd63b
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
src/backend/catalog/system_views.sql
src/backend/utils/mb/conversion_procs/Makefile
src/include/catalog/catversion.h