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 c3eb0fb commit c7927e8Copy full SHA for c7927e8
src/db-check.cpp
@@ -47,6 +47,10 @@ void check_db(options_t const &options)
47
get_minimum_postgresql_server_version())};
48
}
49
50
+ auto const postgis_version = get_postgis_version(db_connection);
51
+ log_info("PostGIS version: {}.{}", postgis_version.major,
52
+ postgis_version.minor);
53
+
54
// If we are in append mode and the middle nodes table isn't there,
55
// it probably means we used a flat node store when we created this
56
// database. Check for that and stop if it looks like we are missing
0 commit comments