Opened 10 years ago

Closed 10 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

Change History (1)

comment:1 by Veranika Liaukevich, 10 years ago

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.