diff options
author | Steve Singer | 2022-11-03 13:12:31 +0000 |
---|---|---|
committer | Steve Singer | 2022-11-03 13:12:31 +0000 |
commit | 1476f46f624dea1023de278a4369e092d0df7f7a (patch) | |
tree | b66d9ef19989df3230738523b76dd49a85d564d6 | |
parent | 747cc07ca60b22abaf6b05d036b1867aa59aa60e (diff) |
Remove second unsupported warning for PG 15REL_2_2_STABLE
-rw-r--r-- | src/slonik/slonik.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slonik/slonik.c b/src/slonik/slonik.c index f5ab8ac4..3b3e6f10 100644 --- a/src/slonik/slonik.c +++ b/src/slonik/slonik.c @@ -2178,7 +2178,7 @@ load_slony_functions(SlonikStmt * stmt, int no_id) use_major = 8; use_minor = 4; } - else if ((adminfo->pg_version >= 90000) && (adminfo->pg_version < 150000)) /* 9.0, 9.1, 9.2 */ + else if ((adminfo->pg_version >= 90000) && (adminfo->pg_version < 160000)) /* 9.0, 9.1, 9.2 */ { /** * 9.0 and 9.1 and 9.2 and 9.3,9.4 are so far just like 8.4 |