Navigation Menu

Skip to content

Commit

Permalink
Added PQfmod() to class QgsPostgresResult
Browse files Browse the repository at this point in the history
  • Loading branch information
SebDieBln committed Nov 13, 2015
1 parent 824fd7b commit 4edf1ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/providers/postgres/qgspostgresconn.cpp
Expand Up @@ -124,6 +124,12 @@ int QgsPostgresResult::PQftype( int col )
return ::PQftype( mRes, col );
}

int QgsPostgresResult::PQfmod( int col )
{
Q_ASSERT( mRes );
return ::PQfmod( mRes, col );
}

Oid QgsPostgresResult::PQoidValue()
{
Q_ASSERT( mRes );
Expand Down
1 change: 1 addition & 0 deletions src/providers/postgres/qgspostgresconn.h
Expand Up @@ -167,6 +167,7 @@ class QgsPostgresResult
QString PQfname( int col );
int PQftable( int col );
int PQftype( int col );
int PQfmod( int col );
int PQftablecol( int col );
Oid PQoidValue();

Expand Down

0 comments on commit 4edf1ee

Please sign in to comment.