Changes between Initial Version and Version 1 of Ticket #132
- Timestamp:
- Mar 2, 2012, 12:30:07 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #132 – Description
initial v1 2 2 select c.red from multi as c 3 3 }}} 4 fails with '''Struct selector is not valid.''', while selecting by number works:4 fails with "'''Struct selector is not valid.'''" when a custom struct type is used, while selecting by number works: 5 5 {{{ 6 6 select c.0 from multi as c 7 7 }}} 8 selecting from an RGBSet collection also works: 9 {{{ 10 select sdom(c.red) from rgb as c 11 }}}