Skip to content

Commit a111889

Browse files
committed
postgres provider: don't log expected failure (followup 6b3651f)
1 parent c7a0543 commit a111889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/providers/postgres/qgspostgresprovider.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3087,7 +3087,7 @@ bool QgsPostgresProvider::getGeometryDetails()
30873087
{
30883088
sql = QString( "SELECT (SELECT t.typname FROM pg_type t WHERE oid = %1), upper(postgis_typmod_type(%2)), postgis_typmod_srid(%2)" )
30893089
.arg( QString::number( result.PQftype( 0 ) ), QString::number( result.PQfmod( 0 ) ) );
3090-
result = connectionRO()->PQexec( sql );
3090+
result = connectionRO()->PQexec( sql, false );
30913091
if ( result.PQntuples() == 1 )
30923092
{
30933093
geomColType = result.PQgetvalue( 0, 0 );

0 commit comments

Comments
 (0)