Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[processing] Make python field calculator support LongLong
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
python/plugins/processing/algs/qgis/FieldPyculator.py
|
@@ -52,7 +52,7 @@ class FieldsPyculator(QgisAlgorithm): |
|
|
OUTPUT = 'OUTPUT' |
|
|
RESULT_VAR_NAME = 'value' |
|
|
|
|
|
TYPES = [QVariant.Int, QVariant.Double, QVariant.String] |
|
|
TYPES = [QVariant.LongLong, QVariant.Double, QVariant.String] |
|
|
|
|
|
def group(self): |
|
|
return self.tr('Vector table') |
|
|