Skip to content

Commit

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

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

0 comments on commit bce1262

Please sign in to comment.