Skip to content

Commit

Permalink
Revert "postgres provider: quote compound key columns in uri"
Browse files Browse the repository at this point in the history
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 5abdfcb commit dd85796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresprovider.cpp
Expand Up @@ -235,7 +235,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 dd85796

Please sign in to comment.