We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d6a8a7 commit 8f62ea1Copy full SHA for 8f62ea1
lib/teslamate/database_check.ex
@@ -39,6 +39,9 @@ defmodule TeslaMate.DatabaseCheck do
39
IO.puts("PostgreSQL version #{raw_version} is compatible (17.x series).")
40
end
41
42
+ major_int when major_int > 17 ->
43
+ IO.puts("PostgreSQL version #{raw_version} is not officially tested or supported yet. Use at your own risk.")
44
+
45
_ ->
46
raise "PostgreSQL version #{raw_version} is not supported. Only 16.x (min #{@min_version_16}) and 17.x (min #{@min_version_17}) are supported."
47
0 commit comments