Skip to content

Commit 0a51260

Browse files
committed
attribute table filter: consider LongLong numeric too
1 parent 1e9774f commit 0a51260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgsattributetabledialog.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ void QgsAttributeTableDialog::filterQueryChanged( const QString& query )
660660
return;
661661

662662
QVariant::Type fldType = flds[fldIndex].type();
663-
bool numeric = ( fldType == QVariant::Int || fldType == QVariant::Double );
663+
bool numeric = ( fldType == QVariant::Int || fldType == QVariant::Double || fldType == QVariant::LongLong );
664664

665665
QString sensString = "ILIKE";
666666
if ( mCbxCaseSensitive->isChecked() )

0 commit comments

Comments
 (0)