We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent fc0843c commit 258851aCopy full SHA for 258851a
src/core/qgsdatasourceuri.cpp
@@ -64,8 +64,8 @@ QgsDataSourceURI::QgsDataSourceURI( QString uri )
64
65
if ( i == uri.length() || uri[i] != '=' )
66
{
67
- QgsDebugMsg( "= expected after parameter name" );
68
- return;
+ QgsDebugMsg( QString( "= expected after parameter name, skipping text '%1'" ).arg( pname ) );
+ continue;
69
}
70
71
i++;
@@ -101,7 +101,6 @@ QgsDataSourceURI::QgsDataSourceURI( QString uri )
101
102
103
int start = i;
104
- QString col;
105
while ( i < uri.length() && uri[i] != ')' )
106
107
if ( uri[i] == '\\' )
0 commit comments