You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ni...@apache.org on 2018/01/30 09:31:56 UTC

atlas git commit: ATLAS-2423 : Min values for double and float

Repository: atlas
Updated Branches:
  refs/heads/master a02be15d4 -> 76fbe643e


ATLAS-2423 : Min values for double and float

Signed-off-by: nixonrodrigues <ni...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/76fbe643
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/76fbe643
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/76fbe643

Branch: refs/heads/master
Commit: 76fbe643e50d7adc8d6c21dc7e920a58bfd47488
Parents: a02be15
Author: Sharmadha Sainath <ss...@hortonworks.com>
Authored: Tue Jan 30 10:08:07 2018 +0530
Committer: nixonrodrigues <ni...@apache.org>
Committed: Tue Jan 30 15:00:54 2018 +0530

----------------------------------------------------------------------
 dashboardv2/public/js/utils/Enums.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/76fbe643/dashboardv2/public/js/utils/Enums.js
----------------------------------------------------------------------
diff --git a/dashboardv2/public/js/utils/Enums.js b/dashboardv2/public/js/utils/Enums.js
index c1531e8..a7b9a8b 100644
--- a/dashboardv2/public/js/utils/Enums.js
+++ b/dashboardv2/public/js/utils/Enums.js
@@ -91,11 +91,11 @@ define(['require'], function(require) {
             max: 9223372036854775807
         },
         "float": {
-            min: 1.4E-45,
+            min: -3.4028235E38,
             max: 3.4028235E38
         },
         "double": {
-            min: 4.9E-324,
+            min: -1.7976931348623157E308,
             max: 1.7976931348623157E308
         }
       }