Skip to content

Commit

Permalink
[processing] Make python field calculator support LongLong
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Sep 19, 2017
1 parent 506b35a commit 0ac0249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/FieldPyculator.py
Expand Up @@ -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')
Expand Down

0 comments on commit 0ac0249

Please sign in to comment.