Skip to content

Commit

Permalink
Fix shameful text formatting
Browse files Browse the repository at this point in the history
Co-authored-by: Nyall Dawson <nyall.dawson@gmail.com>
  • Loading branch information
borysiasty and nyalldawson committed Aug 6, 2020
1 parent d313902 commit 560eb31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresprovider.cpp
Expand Up @@ -909,7 +909,7 @@ bool QgsPostgresProvider::loadFields()
{
attroidsList.append( QString::number( attroid ) );
}
attroidsFilter = QStringLiteral( "WHERE oid in (" ) + attroidsList.join( QStringLiteral( "," ) ) + QStringLiteral( ")" );
attroidsFilter = QStringLiteral( "WHERE oid in (%1)" ).arg( attroidsList.join( ',' ) );
}
}

Expand Down

0 comments on commit 560eb31

Please sign in to comment.