Opened 11 years ago
Closed 11 years ago
#706 closed defect (fixed)
RasGMArrays don't have specified type schema
Reported by: | Veranika Liaukevich | Owned by: | Veranika Liaukevich |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | java | Version: | development |
Keywords: | Cc: | ||
Complexity: | Medium |
Description
RasGMArrays, received from the server using the java client library, don't have specified type schema and base type schema.
OQLQuery oqlquery = impl.newOQLQuery(); oqlquery.create("select x from mr as x"); DBag bag = (DBag) oqlquery.execute(); Iterator iter = bag.iterator(); RasGMArray array = (RasGMArray) iter.next(); RasType type = array.getTypeSchema(); // is null RasBaseType btype = array.getBaseTypeSchema(); // is null
Note:
See TracTickets
for help on using tickets.