diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-05-03 14:36:38 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-05-03 14:36:38 -0400 |
commit | 9888b34fdb169c1f0982ad700fc6d43e8b7aec14 (patch) | |
tree | 141326d6bcf5af5c1e86c07cada23fa16833b542 /src/include | |
parent | 8826d850781cb328482c8f92af2a3d93385cd63b (diff) | |
download | postgresql-9888b34fdb169c1f0982ad700fc6d43e8b7aec14.tar.gz postgresql-9888b34fdb169c1f0982ad700fc6d43e8b7aec14.zip |
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
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/catversion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index b65663084a9..a5eba196e99 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 201605021 +#define CATALOG_VERSION_NO 201605031 #endif |