replace CASE construct with plpgsql function

This commit is contained in:
Sarah Hoffmann
2023-06-28 14:27:35 +02:00
parent 42631b85c7
commit 5135041405
3 changed files with 29 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ class NominatimVersion(NamedTuple):
return f"{self.major}.{self.minor}.{self.patch_level}-{self.db_patch_level}"
NOMINATIM_VERSION = NominatimVersion(4, 2, 99, 1)
NOMINATIM_VERSION = NominatimVersion(4, 2, 99, 2)
POSTGRESQL_REQUIRED_VERSION = (9, 6)
POSTGIS_REQUIRED_VERSION = (2, 2)