Changes between Initial Version and Version 3 of Ticket #1987


Ignore:
Timestamp:
Oct 10, 2019, 10:19:50 AM (5 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1987

    • Property Priority majorminor
    • Property Owner set to apercov
    • Property Status newassigned
    • Property Milestone 9.810.0
  • Ticket #1987 – Description

    initial v3  
    11.. 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
     3It 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{{{
     5rasql -q 'select c from RAS_STRUCT_TYPES as c' --out string
     6rasql -q 'select c from RAS_MARRAY_TYPES as c' --out string
     7rasql -q 'select c from RAS_SET_TYPES as c' --out string
     8}}}
     9at once with this query:
     10{{{
     11rasql -q 'select c from RAS_TYPES as c' --out string
     12}}}