Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
postgres provider: quote compound key columns in uri (fixes #13710)
  • Loading branch information
jef-n committed Nov 1, 2015
1 parent d3ee16f commit daa6510
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 daa6510

Please sign in to comment.