Skip to content

Commit dd85796

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 5abdfcb commit dd85796

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/providers/postgres/qgspostgresprovider.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ QgsPostgresProvider::QgsPostgresProvider( QString const & uri )
235235
QString delim;
236236
Q_FOREACH ( int idx, mPrimaryKeyAttrs )
237237
{
238-
key += delim + quotedIdentifier( mAttributeFields.at( idx ).name() );
238+
key += delim + mAttributeFields.at( idx ).name();
239239
delim = ',';
240240
}
241241
}

0 commit comments

Comments
 (0)