Skip to content

Commit 0ac0249

Browse files
committedSep 19, 2017
[processing] Make python field calculator support LongLong
1 parent 506b35a commit 0ac0249

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/qgis/FieldPyculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class FieldsPyculator(QgisAlgorithm):
5252
OUTPUT = 'OUTPUT'
5353
RESULT_VAR_NAME = 'value'
5454

55-
TYPES = [QVariant.Int, QVariant.Double, QVariant.String]
55+
TYPES = [QVariant.LongLong, QVariant.Double, QVariant.String]
5656

5757
def group(self):
5858
return self.tr('Vector table')

0 commit comments

Comments
 (0)
Please sign in to comment.