Repository: tajo Updated Branches: refs/heads/master 6f28fa58b -> 2a850cfc5
TAJO-1775: HCatalogStore need to be deprecated. Closes #694 Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/2a850cfc Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/2a850cfc Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/2a850cfc Branch: refs/heads/master Commit: 2a850cfc5adbf48f982b63a79e6b759d16ef425b Parents: 6f28fa5 Author: JaeHwa Jung <[email protected]> Authored: Wed Aug 19 22:38:20 2015 +0900 Committer: JaeHwa Jung <[email protected]> Committed: Wed Aug 19 22:38:20 2015 +0900 ---------------------------------------------------------------------- .../tajo/catalog/store/HCatalogStore.java | 32 ++++++++++++++++++++ 1 file changed, 32 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tajo/blob/2a850cfc/tajo-catalog/tajo-catalog-drivers/tajo-hive/src/main/java/org/apache/tajo/catalog/store/HCatalogStore.java ---------------------------------------------------------------------- diff --git a/tajo-catalog/tajo-catalog-drivers/tajo-hive/src/main/java/org/apache/tajo/catalog/store/HCatalogStore.java b/tajo-catalog/tajo-catalog-drivers/tajo-hive/src/main/java/org/apache/tajo/catalog/store/HCatalogStore.java new file mode 100644 index 0000000..d9180fd --- /dev/null +++ b/tajo-catalog/tajo-catalog-drivers/tajo-hive/src/main/java/org/apache/tajo/catalog/store/HCatalogStore.java @@ -0,0 +1,32 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.tajo.catalog.store; + +import org.apache.hadoop.conf.Configuration; + +@Deprecated +/** + * <code>HCatalogStore</code> is no longer used since Tajo 0.11.0. This is a dummy HCatalogStore class, which is used + * to be compatible with Tajo 0.10.x applications. + */ +public class HCatalogStore extends HiveCatalogStore { + public HCatalogStore(final Configuration conf) { + super(conf); + } +}
