Skip to content

Commit

Permalink
[BUGFIX] Fixes QgsPostgresProviderConnection::createSpatialIndex. Add…
Browse files Browse the repository at this point in the history
…s quotedIdentifier to avoid failure when indexName contains 'invalid' characters
  • Loading branch information
lbartoletti authored and nyalldawson committed Apr 27, 2021
1 parent 5eaf26b commit 94bda8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresproviderconnection.cpp
Expand Up @@ -400,7 +400,7 @@ void QgsPostgresProviderConnection::createSpatialIndex( const QString &schema, c

const QString indexName = QStringLiteral( "sidx_%1_%2" ).arg( name, geometryColumnName );
executeSql( QStringLiteral( "CREATE INDEX %1 ON %2.%3 USING GIST (%4);" )
.arg( indexName,
.arg( QgsPostgresConn::quotedIdentifier( indexName ),
QgsPostgresConn::quotedIdentifier( schema ),
QgsPostgresConn::quotedIdentifier( name ),
QgsPostgresConn::quotedIdentifier( geometryColumnName ) ) );
Expand Down

0 comments on commit 94bda8a

Please sign in to comment.