diff options
| author | Steve Singer | 2020-11-22 16:59:28 +0000 |
|---|---|---|
| committer | Steve Singer | 2020-11-29 20:34:16 +0000 |
| commit | 5b4dc7df19f3e0873d7daa00b76b8f048bec5185 (patch) | |
| tree | aba18a3d9b697ae8100f1c2881828a4d5b8ea0cb | |
| parent | b336e4682a6571a6bab24be723aebdd878b6aa8c (diff) | |
Remove unsupported warning on PG13
Bump version to 2.2.9
Patch by Sandeep Thakkar <sandeep.thakkar@enterprisedb.com>
| -rw-r--r-- | src/backend/slony1_funcs.def | 26 | ||||
| -rw-r--r-- | src/slonik/slonik.c | 8 |
2 files changed, 17 insertions, 17 deletions
diff --git a/src/backend/slony1_funcs.def b/src/backend/slony1_funcs.def index 5229fd2b..8f57c62c 100644 --- a/src/backend/slony1_funcs.def +++ b/src/backend/slony1_funcs.def @@ -1,14 +1,14 @@ EXPORTS -_Slony_I_2_2_0_createEvent -_Slony_I_2_2_0_getModuleVersion -_Slony_I_2_2_0_denyAccess -_Slony_I_2_2_0_lockedSet -_Slony_I_2_2_0_getLocalNodeId -_Slony_I_2_2_0_killBackend -_Slony_I_2_2_0_seqtrack -_Slony_I_2_2_0_logTrigger -_Slony_I_2_2_0_resetSession -_Slony_I_2_2_0_logApply -_Slony_I_2_2_0_logApplySetCacheSize -_Slony_I_2_2_0_logApplySaveStats -_Slony_I_2_2_0_slon_decode_tgargs +_Slony_I_2_3_0_createEvent +_Slony_I_2_3_0_getModuleVersion +_Slony_I_2_3_0_denyAccess +_Slony_I_2_3_0_lockedSet +_Slony_I_2_3_0_getLocalNodeId +_Slony_I_2_3_0_killBackend +_Slony_I_2_3_0_seqtrack +_Slony_I_2_3_0_logTrigger +_Slony_I_2_3_0_resetSession +_Slony_I_2_3_0_logApply +_Slony_I_2_3_0_logApplySetCacheSize +_Slony_I_2_3_0_logApplySaveStats +_Slony_I_2_3_0_slon_decode_tgargs diff --git a/src/slonik/slonik.c b/src/slonik/slonik.c index 3117b2dd..4bf3f303 100644 --- a/src/slonik/slonik.c +++ b/src/slonik/slonik.c @@ -2084,15 +2084,15 @@ load_slony_base(SlonikStmt * stmt, int no_id) use_major = 8; use_minor = 4; } - else if ((adminfo->pg_version >= 90000) && (adminfo->pg_version < 120000)) /* 11 */ + else if ((adminfo->pg_version >= 90000) && (adminfo->pg_version < 130000)) /* 13 */ { /** - * 9.0 through 11 are so far just like 8.4 + * 9.0 through 13 are so far just like 8.4 **/ use_major = 8; use_minor = 4; } - else /* above 11 */ + else /* above 13 */ { use_major = 8; use_minor = 4; @@ -2173,7 +2173,7 @@ load_slony_functions(SlonikStmt * stmt, int no_id) use_major = 8; use_minor = 4; } - else if ((adminfo->pg_version >= 90000) && (adminfo->pg_version < 110000)) /* 9.0, 9.1, 9.2 */ + else if ((adminfo->pg_version >= 90000) && (adminfo->pg_version < 130000)) /* 9.0, 9.1, 9.2 */ { /** * 9.0 to 9.4 are so far just like 8.4 |
