Changes between Initial Version and Version 1 of Ticket #1436


Ignore:
Timestamp:
Nov 11, 2016, 12:04:02 PM (8 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1436 – Description

    initial v1  
    22
    33WCPS query example:
    4 
    54
    65{{{
     
    1817}}}
    1918
    20  
     19Furthermore, 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{{{
     23WCPS:
     24for c in (test_rgb) return {blue: c.red}
     25rasql:
     26select c.red from test_rgb as c
     27}}}
     28'''multi field'''
     29{{{
     30WCPS:
     31for c in (test_rgb) return {blue: c.red; red: c.blue}
     32rasql:
     33select {c.red, c.blue} from test_rgb as c
     34}}}