use of org.apache.ignite.internal.processors.query.QueryTypeDescriptorImpl in project ignite by apache.
the class AbstractSchemaSelfTest method typeExisting.
/**
* Get type on the given node for the given cache and table name. Type must exist.
*
* @param node Node.
* @param cacheName Cache name.
* @param tblName Table name.
* @return Type.
*/
static QueryTypeDescriptorImpl typeExisting(IgniteEx node, String cacheName, String tblName) {
QueryTypeDescriptorImpl res = type(node, cacheName, tblName);
assertNotNull(res);
return res;
}
Aggregations