Changes between Version 2 and Version 3 of Ticket #2754


Ignore:
Timestamp:
Jul 31, 2023, 10:52:55 AM (10 months ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2754 – Description

    v2 v3  
    77$r -q 'update test_sdom_error as c set c assign marray i in [2:2,3035:3051,126:1125] values 200c'
    88$r -q 'update test_sdom_error as c set c assign marray i in [2:2,3035:3051,1126:1375] values 200c'
    9 $r -q 'update test_sdom_error as c set c assign marray i in [1:1,3199:3204,-9:1302] values 100c'
    109
    11 $r -q 'c0[2,2446:3204,-9:1166] FROM test_sdom_error AS c0'
     10$r -q 'SELECT
     11        scale(
     12          c0[2,2446:3204,-9:1166], [0:257, 0:337]
     13        )[172:257, 47:191]
     14  FROM test_sdom_error AS c0'
    1215}}}
    1316the SELECT query throws
     
    1720but it should work without error.
    1821
    19 The problem I guess is that the slice at `[2,...]` has sdom `[2:2,2035:3051,126:1375]` which doesn't cover `[2,2446:3204,-9:1166]`.
    20 
    21 However, the full sdom of the array is `[0:2,0:3204,-9:1375]`, which covers fine that subset, so no error should be thrown.