Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
replace double quote with simple quote
Co-Authored-By: troopa81 <julien.cabieces@oslandia.com>
  • Loading branch information
m-kuhn and troopa81 committed Mar 4, 2019
1 parent bce1262 commit bc166cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresprovider.cpp
Expand Up @@ -4342,7 +4342,7 @@ QVariant QgsPostgresProvider::parseMultidimensionalArray( const QString &txt )

values.append( text.left( ++i ) );
i = text.indexOf( ',', i );
i = i > 0 ? text.indexOf( "{", i ) : -1;
i = i > 0 ? text.indexOf( '{', i ) : -1;
if ( i == -1 )
break;

Expand Down

0 comments on commit bc166cf

Please sign in to comment.