Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 10.0.19
-
Component/s: Dynamic Columns
-
Labels:None
-
Environment:Darwin yossy.local 14.3.0 Darwin Kernel Version 14.3.0: Mon Mar 23 11:59:05 PDT 2015; root:xnu-2782.20.48~5/RELEASE_X86_64 x86_64
-
Sprint:10.0.23
Description
SELECT COLUMN_JSON( |
COLUMN_CREATE(
|
'one', 123.456, |
'two', 123.456 as DOUBLE |
)
|
);
|
results in
{"one":123.456,"two":"123.46"}
|
when I would expect
{"one":123.456,"two":123.46}
|