Skip to content

Commit

Permalink
postgres provider: ignore errors on querying geography_columns
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 18, 2012
1 parent 7147e15 commit f432e83
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/providers/postgres/qgspostgresconn.cpp
Expand Up @@ -349,7 +349,11 @@ bool QgsPostgresConn::getTableInfo( bool searchGeometryColumnsOnly, bool searchP
if ( result.PQresultStatus() != PGRES_TUPLES_OK )
{
PQexecNR( "COMMIT" );
return false;

if ( i == 0 )
return false;

continue;
}
else
{
Expand Down

0 comments on commit f432e83

Please sign in to comment.