PageRenderTime 44ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/release-0.1-rc2/hive/external/ql/src/java/org/apache/hadoop/hive/ql/optimizer/pcr/PcrOpWalkerCtx.java

#
Java | 70 lines | 37 code | 10 blank | 23 comment | 0 complexity | c11486d4a901d8d11cfda8bf7fd1cb01 MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, JSON, CPL-1.0
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. package org.apache.hadoop.hive.ql.optimizer.pcr;
  19. import java.io.Serializable;
  20. import java.util.List;
  21. import org.apache.hadoop.hive.ql.exec.FilterOperator;
  22. import org.apache.hadoop.hive.ql.exec.Operator;
  23. import org.apache.hadoop.hive.ql.lib.NodeProcessorCtx;
  24. import org.apache.hadoop.hive.ql.parse.ParseContext;
  25. /**
  26. * Context class for operator tree walker for partition condition remover.
  27. */
  28. public class PcrOpWalkerCtx implements NodeProcessorCtx {
  29. static public class OpToDeleteInfo {
  30. private final Operator<? extends Serializable> parent;
  31. private final FilterOperator operator;
  32. public OpToDeleteInfo(Operator<? extends Serializable> parent, FilterOperator operator) {
  33. super();
  34. this.parent = parent;
  35. this.operator = operator;
  36. }
  37. public Operator<? extends Serializable> getParent() {
  38. return parent;
  39. }
  40. public FilterOperator getOperator() {
  41. return operator;
  42. }
  43. }
  44. private final ParseContext parseContext;
  45. private final List<OpToDeleteInfo> opToRemove;
  46. /**
  47. * Constructor.
  48. */
  49. public PcrOpWalkerCtx(ParseContext parseContext,
  50. List<OpToDeleteInfo> opToRemove) {
  51. this.parseContext = parseContext;
  52. this.opToRemove = opToRemove;
  53. }
  54. public ParseContext getParseContext() {
  55. return parseContext;
  56. }
  57. public List<OpToDeleteInfo> getOpToRemove() {
  58. return opToRemove;
  59. }
  60. }