Package org.saiku.olap.util.exception

Examples of org.saiku.olap.util.exception.SaikuIncompatibleException


        qh = sQuery.getHierarchy(hierarchyName);
        first = false;
      }

      if (sel.getSelectionContext() != null) {
        throw new SaikuIncompatibleException("Cannot convert queries with selection context");
      }
      if (sel.getRootElement() instanceof Member) {
        if (sel.getOperator().equals(Operator.MEMBER)) {
          qh.includeMember(sel.getRootElement().getUniqueName());
        } else {
          throw new SaikuIncompatibleException("Cannot convert member selection using operator: " + sel.getOperator());
        }
      } else {
        qh.includeLevel(sel.getRootElement().getName());
      }
    }
View Full Code Here

TOP

Related Classes of org.saiku.olap.util.exception.SaikuIncompatibleException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.