diff options
author | Steve Singer | 2020-12-05 02:07:59 +0000 |
---|---|---|
committer | Steve Singer | 2020-12-05 02:07:59 +0000 |
commit | 93296b33d248268dceae53dd63a0dec64daeef0f (patch) | |
tree | cf29522b972427157507c488ba16ebdaa5a17af4 | |
parent | c77e7c866baa7c4b29e11da72e4e887283df3c06 (diff) |
2.2.10REL_2_2_10
-rw-r--r-- | config.h.in | 6 | ||||
-rw-r--r-- | config_msvc.h | 6 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/backend/slony1_funcs.def | 26 | ||||
-rw-r--r-- | src/backend/slony1_funcs.sql | 2 |
5 files changed, 21 insertions, 21 deletions
diff --git a/config.h.in b/config.h.in index aa5feb24..323a0c63 100644 --- a/config.h.in +++ b/config.h.in @@ -12,9 +12,9 @@ #ifndef SLONY_I_CONFIG_H #define SLONY_I_CONFIG_H -#define SLONY_I_VERSION_STRING "2.2.9" -#define SLONY_I_VERSION_STRING_DEC 2,2,9 -#define SLONY_I_FUNC_VERSION_STRING 2_2_9 +#define SLONY_I_VERSION_STRING "2.2.10" +#define SLONY_I_VERSION_STRING_DEC 2,2.10, +#define SLONY_I_FUNC_VERSION_STRING 2_2_10_ #ifndef PG_VERSION_MAJOR #define PG_VERSION_MAJOR 0 diff --git a/config_msvc.h b/config_msvc.h index 6feabed2..3b219b31 100644 --- a/config_msvc.h +++ b/config_msvc.h @@ -4,9 +4,9 @@ #include <server/pg_config.h> -#define SLONY_I_VERSION_STRING "2.2.9" -#define SLONY_I_VERSION_STRING_DEC 2,2,9 -#define SLONY_I_FUNC_VERSION_STRING 2_2_9 +#define SLONY_I_VERSION_STRING "2.2.10" +#define SLONY_I_VERSION_STRING_DEC 2,2,10 +#define SLONY_I_FUNC_VERSION_STRING 2_2_10 #if PG_VERSION_NUM >=90600 #define HAVE_GETACTIVESNAPSHOT 1 #define HAVE_TYPCACHE 1 diff --git a/configure.ac b/configure.ac index 10acb953..2deeb962 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ # ---------- m4_define([SLONREL_VERSION], esyscmd([echo "$Name: $" | \ sed -e 's/\:\ REL_//' -e 's/\$//g' -e 's/_/./g' -e 's/\./\_/3' \ - -e 's/\ //g' -e s/\:/`echo 2.2.9`/ | tr -d '\n'])) + -e 's/\ //g' -e s/\:/`echo 2.2.10`/ | tr -d '\n'])) m4_pattern_allow([^SLON_AC_]) diff --git a/src/backend/slony1_funcs.def b/src/backend/slony1_funcs.def index 8be23e60..85b8d434 100644 --- a/src/backend/slony1_funcs.def +++ b/src/backend/slony1_funcs.def @@ -1,14 +1,14 @@ EXPORTS -_Slony_I_2_2_9_createEvent -_Slony_I_2_2_9_getModuleVersion -_Slony_I_2_2_9_denyAccess -_Slony_I_2_2_9_lockedSet -_Slony_I_2_2_9_getLocalNodeId -_Slony_I_2_2_9_killBackend -_Slony_I_2_2_9_seqtrack -_Slony_I_2_2_9_logTrigger -_Slony_I_2_2_9_resetSession -_Slony_I_2_2_9_logApply -_Slony_I_2_2_9_logApplySetCacheSize -_Slony_I_2_2_9_logApplySaveStats -_Slony_I_2_2_9_slon_decode_tgargs +_Slony_I_2_2_10_createEvent +_Slony_I_2_2_10_getModuleVersion +_Slony_I_2_2_10_denyAccess +_Slony_I_2_2_10_lockedSet +_Slony_I_2_2_10_getLocalNodeId +_Slony_I_2_2_10_killBackend +_Slony_I_2_2_10_seqtrack +_Slony_I_2_2_10_logTrigger +_Slony_I_2_2_10_resetSession +_Slony_I_2_2_10_logApply +_Slony_I_2_2_10_logApplySetCacheSize +_Slony_I_2_2_10_logApplySaveStats +_Slony_I_2_2_10_slon_decode_tgargs diff --git a/src/backend/slony1_funcs.sql b/src/backend/slony1_funcs.sql index 6eee35a2..99ee6dd7 100644 --- a/src/backend/slony1_funcs.sql +++ b/src/backend/slony1_funcs.sql @@ -477,7 +477,7 @@ create or replace function @NAMESPACE@.slonyVersionPatchlevel() returns int4 as $$ begin - return 9; + return 10; end; $$ language plpgsql; comment on function @NAMESPACE@.slonyVersionPatchlevel () is |