shamim8888 / asterixdb

Automatically exported from code.google.com/p/asterixdb
0 stars 0 forks source link

JSON returned for Duration type is not valid #892

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
JSON returned for Duration type is not valid:

Query - 
let $timewindow := duration("PT300S")
return {"tw":$timewindow};

Result -
[ { "tw": { "duration": { "months": 0"millis": 300000} } }
 ]

Original issue reported on code.google.com by mjbalaji...@gmail.com on 5 Jun 2015 at 7:11

GoogleCodeExporter commented 8 years ago
Would this be correct?

[ { "tw": { "duration": { "months": 0, "millis": 300000} } }
 ]

Original comment by ecarm...@ucr.edu on 5 Jun 2015 at 4:19