PageRenderTime 42ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/release-0.1-rc2/hive/external/cli/src/java/org/apache/hadoop/hive/cli/CliSessionState.java

#
Java | 61 lines | 18 code | 10 blank | 33 comment | 0 complexity | 530ae8be321d8d352aa4ef3b3d9e6314 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.cli;
  19. import java.util.ArrayList;
  20. import java.util.List;
  21. import java.util.Properties;
  22. import org.apache.hadoop.hive.conf.HiveConf;
  23. import org.apache.hadoop.hive.ql.session.SessionState;
  24. /**
  25. * CliSessionState.
  26. *
  27. */
  28. public class CliSessionState extends SessionState {
  29. /**
  30. * -e option if any that the session has been invoked with.
  31. */
  32. public String execString;
  33. /**
  34. * -f option if any that the session has been invoked with.
  35. */
  36. public String fileName;
  37. /**
  38. * properties set from -hiveconf via cmdline.
  39. */
  40. public Properties cmdProperties = new Properties();
  41. /**
  42. * -i option if any that the session has been invoked with.
  43. */
  44. public List<String> initFiles = new ArrayList<String>();
  45. public CliSessionState() {
  46. super();
  47. }
  48. public CliSessionState(HiveConf conf) {
  49. super(conf);
  50. }
  51. }