Changes between Initial Version and Version 2 of Ticket #1971
- Timestamp:
- Sep 17, 2019, 7:53:37 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1971
- Property Owner set to
- Property Status new → assigned
- Property Milestone 9.8 → 10.0
-
Ticket #1971 – Description
initial v2 1 In this example query, a subset intersects outside the sdom of the array. The outside part of the intersection is populated with 0s, but it should havenull values (-10000 in this case).1 In this example query, a subset intersects outside the sdom of the array. The outside part of the intersection is not printed, but it should print null values (-10000 in this case). 2 2 {{{ 3 3 $ rasql -q 'select encode((<[0:1,0:1] -9999.99f, -9999.99f; -1f, -1f> NULL VALUES [-10000:-9999.98]) [0:3,0:1], "csv")' --out string 4 4 5 5 Query result collection has 1 element(s): 6 Result object 1: {-9999.99,-9999.99},{-1,-1} ,{0,0},{0,0}6 Result object 1: {-9999.99,-9999.99},{-1,-1} 7 7 8 8 }}}