Package mondrian.parser
Interface MdxParserValidator.QueryPartFactory
- All Known Implementing Classes:
Parser.FactoryImpl
- Enclosing interface:
- MdxParserValidator
public static interface MdxParserValidator.QueryPartFactory
-
Method Summary
Modifier and TypeMethodDescriptionmakeDmvQuery(String tableName, List<String> columns, Exp whereExpression) Creates aDmvQueryobject.makeDrillThrough(Query query, int maxRowCount, int firstRowOrdinal, List<Exp> returnList) Creates aDrillThroughobject.makeExplain(QueryPart query) Creates anExplainobject.makeQuery(Statement statement, Formula[] formulae, QueryAxis[] axes, String cube, Exp slicer, QueryPart[] cellProps, boolean strictValidation) Creates aQueryobject.
-
Method Details
-
makeQuery
Query makeQuery(Statement statement, Formula[] formulae, QueryAxis[] axes, String cube, Exp slicer, QueryPart[] cellProps, boolean strictValidation) Creates aQueryobject. Override this function to make your kind of query. -
makeDmvQuery
Creates aDmvQueryobject. Override this function to make your kind of query. -
makeDrillThrough
DrillThrough makeDrillThrough(Query query, int maxRowCount, int firstRowOrdinal, List<Exp> returnList) Creates aDrillThroughobject. -
makeExplain
Creates anExplainobject.
-