Changes between Initial Version and Version 1 of Ticket #2756


Ignore:
Timestamp:
Aug 4, 2023, 7:04:09 AM (10 months ago)
Author:
Bang Pham Huu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2756

    • Property Status assignedclosed
    • Property Resolutionfixed
    • Property Summary FIX - WCPS replaces let clause variables in query before handlingFIX - WCPS fixed scale / extend() by a LET clause variable
  • Ticket #2756 – Description

    initial v1  
    1 for example, this query:
     1for example, this query should work
    22
    33{{{
    44for c in (test_mr)
    5 let x := [i(0:30)]
    6 return encode(c[x], "png")
     5let x := imageCrsDomain(c)
     6return encode(scale(c, {x}), "png")
    77}}}
    8 
    9 then it is written to
    10 
    11 {{{
    12 for c in (test_mr)
    13 return encode(c[i(0:30)], "png")
    14 }}}
    15 
    16 before the query is handled to generate rasql query.