use of org.apache.ignite.internal.cache.query.index.IndexName in project ignite by apache.
the class IgniteSqlQueryDecimalArgumentsWithTest method idxInlineSize.
/**
*/
private int idxInlineSize() {
GridCacheContext<?, ?> cctx = node.cachex(TABLE_CACHE_NAME).context();
InlineIndex idx = (InlineIndex) node.context().indexProcessor().index(new IndexName(cctx.name(), "PUBLIC", TABLE_NAME, IDX_NAME));
return idx.inlineSize();
}
Aggregations