Changes between Initial Version and Version 1 of Ticket #2756
- Timestamp:
- Aug 4, 2023, 7:04:09 AM (16 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2756
- Property Status assigned → closed
- Property Resolution → fixed
- Property Summary FIX - WCPS replaces let clause variables in query before handling → FIX - WCPS fixed scale / extend() by a LET clause variable
-
Ticket #2756 – Description
initial v1 1 for example, this query :1 for example, this query should work 2 2 3 3 {{{ 4 4 for c in (test_mr) 5 let x := [i(0:30)]6 return encode( c[x], "png")5 let x := imageCrsDomain(c) 6 return encode(scale(c, {x}), "png") 7 7 }}} 8 9 then it is written to10 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.