br1ghtyang / asterixdb

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

Array construction loses content #465

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
This query

  let $a := {"r1":1234}
  let $b := {"r2":456}
  return [ $a,$b ]

returns:

  [ {  }, {  } ]

and this

  let $a := { "r1" : 1234 }
  let $b := { "r2" : 456 }
  let $c := [ $a,$b ]
  return $c

doesn't help either.
Returning just $a or $b returns the expected result.

Original issue reported on code.google.com by westm...@gmail.com on 21 May 2013 at 6:40

GoogleCodeExporter commented 8 years ago
Yingyi, could you take a look at this one?
Please send it back, if you are too busy.

Original comment by westm...@gmail.com on 24 May 2013 at 12:33

GoogleCodeExporter commented 8 years ago

Original comment by westm...@gmail.com on 24 May 2013 at 12:35

GoogleCodeExporter commented 8 years ago
Khurram got it right, it was the same bug as issue 456!

Original comment by westm...@gmail.com on 4 Jun 2013 at 12:35

GoogleCodeExporter commented 8 years ago

Original comment by westm...@gmail.com on 4 Jun 2013 at 12:35

GoogleCodeExporter commented 8 years ago

Original comment by westm...@gmail.com on 4 Jun 2013 at 5:28

GoogleCodeExporter commented 8 years ago

Original comment by khfaraaz82 on 4 Jun 2013 at 7:43