Skip to content

Commit 799510f

Browse files
committed
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
1 parent ada9348 commit 799510f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/providers/postgres/qgspostgresprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ QgsPostgresProvider::QgsPostgresProvider( QString const & uri )
248248
QString delim;
249249
Q_FOREACH ( int idx, mPrimaryKeyAttrs )
250250
{
251-
key += delim + quotedIdentifier( mAttributeFields.at( idx ).name() );
251+
key += delim + mAttributeFields.at( idx ).name();
252252
delim = ',';
253253
}
254254
}

0 commit comments

Comments
 (0)