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 824fd7b commit 4edf1eeCopy full SHA for 4edf1ee
src/providers/postgres/qgspostgresconn.cpp
@@ -124,6 +124,12 @@ int QgsPostgresResult::PQftype( int col )
124
return ::PQftype( mRes, col );
125
}
126
127
+int QgsPostgresResult::PQfmod( int col )
128
+{
129
+ Q_ASSERT( mRes );
130
+ return ::PQfmod( mRes, col );
131
+}
132
+
133
Oid QgsPostgresResult::PQoidValue()
134
{
135
Q_ASSERT( mRes );
src/providers/postgres/qgspostgresconn.h
@@ -167,6 +167,7 @@ class QgsPostgresResult
167
QString PQfname( int col );
168
int PQftable( int col );
169
int PQftype( int col );
170
+ int PQfmod( int col );
171
int PQftablecol( int col );
172
Oid PQoidValue();
173
0 commit comments