Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.0.19
-
None
-
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
-
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}
|