Changes between Initial Version and Version 1 of Ticket #2068
- Timestamp:
- Apr 10, 2019, 7:13:31 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2068 – Description
initial v1 2 2 3 3 In the induced condenser this is not the case: null values are treated the same way as in binary induced operation, i.e. the result is null if any cell in the operands (or slices in induced condenser) is null (cf. [http://doc.rasdaman.org/04_ql-guide.html#nulls-in-mdd-valued-expressions documentation]). 4 5 With an example, these two expressions are equivalent and hence null value treatment is the same: 6 {{{ 7 select condense + 8 over i in [0:1] 9 using coll3d[ i[0], 0:100, 0:100 ] 10 from coll3d 11 }}} 12 = 13 {{{ 14 select coll3d[0, 0:100, 0:100] + 15 coll3d[1, 0:100, 0:100] 16 from coll3d 17 }}} 18 19 The correct equivalence of the first condense expression, however, should be: 20 {{{ 21 select marray i in [0:100, 0:100] 22 values add_cells( coll3d[ 0:1, i[0], i[1] ] ) 23 from coll3d 24 }}}