PageRenderTime 42ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Java | 59 lines | 25 code | 10 blank | 24 comment | 0 complexity | 6007330a3a492b00174053e9e07abe96 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.util.List;
  20. import org.apache.hadoop.hive.ql.lib.NodeProcessorCtx;
  21. import org.apache.hadoop.hive.ql.metadata.Partition;
  22. /**
  23. * The processor context for partition condition remover. This contains
  24. * partition pruned for the table scan and table alias.
  25. */
  26. public class PcrExprProcCtx implements NodeProcessorCtx {
  27. public PcrExprProcCtx(String tabAlias, List<Partition> partList) {
  28. super();
  29. this.tabAlias = tabAlias;
  30. this.partList = partList;
  31. }
  32. /**
  33. * The table alias that is being currently processed.
  34. */
  35. String tabAlias;
  36. List<Partition> partList;
  37. public String getTabAlias() {
  38. return tabAlias;
  39. }
  40. public void setTabAlias(String tabAlias) {
  41. this.tabAlias = tabAlias;
  42. }
  43. public List<Partition> getPartList() {
  44. return partList;
  45. }
  46. public void setPartList(List<Partition> partList) {
  47. this.partList = partList;
  48. }
  49. }