Skip to content

Commit

Permalink
[processing] add support for int64 fields (fix #14777)
Browse files Browse the repository at this point in the history
(cherry picked from commit f1e6d87)
  • Loading branch information
alexbruy committed May 12, 2016
1 parent d5d7634 commit 64825b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/gui/ParametersPanel.py
Expand Up @@ -437,8 +437,8 @@ def getFields(self, layer, datatype):
if datatype == ParameterTableField.DATA_TYPE_STRING:
fieldTypes = [QVariant.String]
elif datatype == ParameterTableField.DATA_TYPE_NUMBER:
fieldTypes = [QVariant.Int, QVariant.Double, QVariant.ULongLong,
QVariant.UInt]
fieldTypes = [QVariant.Int, QVariant.Double, QVariant.LongLong,
QVariant.UInt, QVariant.ULongLong]

fieldNames = set()
for field in layer.pendingFields():
Expand Down

0 comments on commit 64825b9

Please sign in to comment.