We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 7b61b83 commit 542f814Copy full SHA for 542f814
src/providers/postgres/qgspostgresconn.h
@@ -110,9 +110,12 @@ class QgsPostgresConn : public QObject
110
//! encode wkb in hex
111
bool useWkbHex() { return mUseWkbHex; }
112
113
- //! major PostgreSQL version
+ //! major PostGIS version
114
int majorVersion() { return mPostgisVersionMajor; }
115
116
+ //! minor PostGIS version
117
+ int minorVersion() { return mPostgisVersionMinor; }
118
+
119
//! PostgreSQL version
120
int pgVersion() { return mPostgresqlVersion; }
121
0 commit comments