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 c6fb7b3 commit 73ac2f3Copy full SHA for 73ac2f3
src/providers/virtual/qgsvirtuallayerqueryparser.cpp
@@ -154,7 +154,6 @@ namespace QgsVirtualLayerQueryParser
154
Sqlite::Query::exec( db, viewStr );
155
156
QStringList columns;
157
- bool hasInvalidName = false;
158
QVector<int> undefinedColumns;
159
TableDef tableDef;
160
{
@@ -193,7 +192,7 @@ namespace QgsVirtualLayerQueryParser
193
192
}
194
195
196
- if ( hasInvalidName || undefinedColumns.size() == 0 )
+ if ( undefinedColumns.size() == 0 )
197
return tableDef;
198
199
// get the first row to introspect types
0 commit comments