postgres provider: ignore errors on querying geography_columns

This commit is contained in:
Juergen E. Fischer 2012-02-18 20:57:56 +01:00
parent 7147e155d5
commit f432e83025

View File

@ -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
{