Skip to content

Commit

Permalink
postgres provider: quote compound key columns in uri (fixes #13710)
Browse files Browse the repository at this point in the history
(cherry picked from commit daa6510)
  • Loading branch information
jef-n committed Nov 1, 2015
1 parent c38e459 commit fa47c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresprovider.cpp
Expand Up @@ -196,7 +196,7 @@ QgsPostgresProvider::QgsPostgresProvider( QString const & uri )
QString delim;
Q_FOREACH ( int idx, mPrimaryKeyAttrs )
{
key += delim + mAttributeFields.at( idx ).name();
key += delim + quotedIdentifier( mAttributeFields.at( idx ).name() );
delim = ",";
}
}
Expand Down

0 comments on commit fa47c96

Please sign in to comment.