Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Revert "postgres provider: quote compound key columns in uri"
This reverts commit daa6510.

I've tested that reverting this does not re-introduce bug
http://hub.qgis.org/issues/13710
  • Loading branch information
strk committed Oct 14, 2016
1 parent ada9348 commit 799510f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresprovider.cpp
Expand Up @@ -248,7 +248,7 @@ QgsPostgresProvider::QgsPostgresProvider( QString const & uri )
QString delim;
Q_FOREACH ( int idx, mPrimaryKeyAttrs )
{
key += delim + quotedIdentifier( mAttributeFields.at( idx ).name() );
key += delim + mAttributeFields.at( idx ).name();
delim = ',';
}
}
Expand Down

0 comments on commit 799510f

Please sign in to comment.