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 871b6ae commit c6fb7b3Copy full SHA for c6fb7b3
src/providers/virtual/qgsvirtuallayerqueryparser.cpp
@@ -201,7 +201,7 @@ namespace QgsVirtualLayerQueryParser
201
QString qs = "SELECT ";
202
for ( int i = 0; i < undefinedColumns.size(); i++ )
203
{
204
- qs += columns[undefinedColumns[i]];
+ qs += "\"" + columns[undefinedColumns[i]] + "\"";
205
if ( i != undefinedColumns.size() - 1 )
206
qs += ", ";
207
}
0 commit comments