Skip to content

Commit

Permalink
Merge pull request #2335 from telefonicaid/danielvillalbamota-patch-1
Browse files Browse the repository at this point in the history
Replace esriFieldTypeNumber by esriFieldTypeSingle
  • Loading branch information
fgalan authored Jan 31, 2024
2 parents 8ab48cb + 5cca076 commit 38d6ba4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES_NEXT_RELEASE
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
- [cygnus-common] [Arcgis] include error in log about cast attributes json
- [cygnus-common] Upgrade Debian version from 12.1 to 12.4 in Dockerfile
- [cygnus-common][NGSIGenericColumnAggregator] Fix getValue when gson object is null
- [cygnus-common] [Arcgis] Replace esriFieldTypeNumber by esriFieldTypeSingle (#2334)

Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static GisAttributeType fromString(String strType) throws ArcgisException
case "Integer":
case "SmallInteger":
return GisAttributeType.INTEGER;
case "Number":
case "Single":
case "Double":
return GisAttributeType.NUMBER;
case "Boolean":
Expand Down

0 comments on commit 38d6ba4

Please sign in to comment.