From: John Naylor Date: Fri, 3 Sep 2021 17:38:15 +0000 (-0400) Subject: Set the volatility of the timestamptz version of date_bin() back to immutable X-Git-Tag: REL_14_RC1~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=67c33a114f38edbd66f68d7b2c0cb7b03611ec48;p=thirdparty%2Fpostgresql.git Set the volatility of the timestamptz version of date_bin() back to immutable 543f36b43d was too hasty in thinking that the volatility of date_bin() had to match date_trunc(), since only the latter references session_timezone. Bump catversion Per feedback from Aleksander Alekseev Backpatch to v14, as the former commit was --- diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 21b6648f5ad..490cef62af5 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 202108311 +#define CATALOG_VERSION_NO 202109031 #endif diff --git a/src/include/catalog/pg_proc.dat b/src/include/catalog/pg_proc.dat index aee037e2143..79669bf5a2e 100644 --- a/src/include/catalog/pg_proc.dat +++ b/src/include/catalog/pg_proc.dat @@ -5844,7 +5844,7 @@ proargtypes => 'interval timestamp timestamp', prosrc => 'timestamp_bin' }, { oid => '6178', descr => 'bin timestamp with time zone into specified interval', - proname => 'date_bin', provolatile => 's', prorettype => 'timestamptz', + proname => 'date_bin', prorettype => 'timestamptz', proargtypes => 'interval timestamptz timestamptz', prosrc => 'timestamptz_bin' },