Changes between Initial Version and Version 3 of Ticket #1987
- Timestamp:
- Oct 10, 2019, 10:19:50 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1987
- Property Priority major → minor
- Property Owner set to
- Property Status new → assigned
- Property Milestone 9.8 → 10.0
-
Ticket #1987 – Description
initial v3 1 1 .. as a shortcut for getting all types with one query. Currently we need to fire 3 separate queries for cell, array, and set types. 2 3 It should be implemented in mddcoll.cc to just return a union of struct/mdd/set types, what you currently get with these 3 queries: 4 {{{ 5 rasql -q 'select c from RAS_STRUCT_TYPES as c' --out string 6 rasql -q 'select c from RAS_MARRAY_TYPES as c' --out string 7 rasql -q 'select c from RAS_SET_TYPES as c' --out string 8 }}} 9 at once with this query: 10 {{{ 11 rasql -q 'select c from RAS_TYPES as c' --out string 12 }}}