Package org.apache.hadoop.hive.ql.exec

Examples of org.apache.hadoop.hive.ql.exec.WindowFunctionInfo


        || exprTokenType == HiveParser.TOK_FUNCTIONSTAR) {
      assert (expressionTree.getChildCount() != 0);
      if (expressionTree.getChild(0).getType() == HiveParser.Identifier) {
        String functionName = unescapeIdentifier(expressionTree.getChild(0)
            .getText());
        WindowFunctionInfo fi = FunctionRegistry.getWindowFunctionInfo(functionName);
        if (fi != null) {
          aggregations.add(expressionTree);
          return;
        }
      }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hive.ql.exec.WindowFunctionInfo

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.