Package org.apache.hadoop.hive.ql.plan.PTFDesc

Examples of org.apache.hadoop.hive.ql.plan.PTFDesc.WindowExpressionDef


    if ( wdwSpec.getWindowExpressions() != null ) {
      for(WindowExpressionSpec expr : wdwSpec.getWindowExpressions()) {
        if ( !(expr instanceof WindowFunctionSpec) ) {
          try {
            PTFExpressionDef eDef = buildExpressionDef(wdwOutShape, expr.getExpression());
            WindowExpressionDef wdwEDef = new WindowExpressionDef(eDef);
            wdwEDef.setAlias(expr.getAlias());
            windowExpressions.add(wdwEDef);
          }
          catch(HiveException he) {
            throw new SemanticException(he);
          }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hive.ql.plan.PTFDesc.WindowExpressionDef

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.