Add version 16 support in the rust and python code

This commit is contained in:
Anastasia Lubennikova
2023-06-30 20:10:21 +03:00
parent 1aad8918e1
commit cda148d40d
12 changed files with 42 additions and 8 deletions

View File

@@ -17,6 +17,7 @@ This fixture is used to determine which version of Postgres to use for tests.
class PgVersion(str, enum.Enum):
V14 = "14"
V15 = "15"
V16 = "16"
# Instead of making version an optional parameter in methods, we can use this fake entry
# to explicitly rely on the default server version (could be different from pg_version fixture value)
NOT_SET = "<-POSTRGRES VERSION IS NOT SET->"