提交 4ba2f5eb authored 作者: S.Vladykin's avatar S.Vladykin

Allow access to index conditions and expression.

上级 e7522978
...@@ -347,6 +347,15 @@ public class IndexCondition { ...@@ -347,6 +347,15 @@ public class IndexCondition {
return column; return column;
} }
/**
* Get expression.
*
* @return Expression.
*/
public Expression getExpression() {
return expression;
}
/** /**
* Check if the expression can be evaluated. * Check if the expression can be evaluated.
* *
......
...@@ -803,6 +803,10 @@ public class TableFilter implements ColumnResolver { ...@@ -803,6 +803,10 @@ public class TableFilter implements ColumnResolver {
return masks; return masks;
} }
public ArrayList<IndexCondition> getIndexConditions() {
return indexConditions;
}
public Index getIndex() { public Index getIndex() {
return index; return index;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论