Changes between Initial Version and Version 1 of Ticket #1436
- Timestamp:
- Nov 11, 2016, 12:04:02 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1436 – Description
initial v1 2 2 3 3 WCPS query example: 4 5 4 6 5 {{{ … … 18 17 }}} 19 18 20 19 Furthermore, a range constructor with a single field should only translate the field expression to rasql, and not to a whole range constructor. E.g. 20 21 '''single field''' 22 {{{ 23 WCPS: 24 for c in (test_rgb) return {blue: c.red} 25 rasql: 26 select c.red from test_rgb as c 27 }}} 28 '''multi field''' 29 {{{ 30 WCPS: 31 for c in (test_rgb) return {blue: c.red; red: c.blue} 32 rasql: 33 select {c.red, c.blue} from test_rgb as c 34 }}}