Azure: Handle real type nan/inf values in Log/Insights Analytics (#26342)

Before this, if the user were to divide by 0.0, "Infinity" would be returned in the result and the user would get an error: "unexpected type, expected json.Number but got string". Now these values are properly set as Inf values (and also made sure to handle NaN as well).
This commit is contained in:
Kyle Brandt
2020-07-15 09:39:41 -04:00
committed by GitHub
parent 3fd810417f
commit 590702c497
3 changed files with 61 additions and 1 deletions
@@ -0,0 +1,29 @@
{
"tables": [
{
"name": "PrimaryResult",
"columns": [
{
"name": "XInf",
"type": "real"
},
{
"name": "XInfNeg",
"type": "real"
},
{
"name": "XNan",
"type": "real"
}
],
"rows": [
[
"Infinity",
"-Infinity",
"NaN"
]
]
}
]
}