Return-Path: X-Original-To: apmail-hive-dev-archive@www.apache.org Delivered-To: apmail-hive-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A885810592 for ; Tue, 13 Jan 2015 22:39:33 +0000 (UTC) Received: (qmail 80404 invoked by uid 500); 13 Jan 2015 22:39:35 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 80324 invoked by uid 500); 13 Jan 2015 22:39:35 -0000 Mailing-List: contact dev-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list dev@hive.apache.org Received: (qmail 80311 invoked by uid 500); 13 Jan 2015 22:39:34 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 80308 invoked by uid 99); 13 Jan 2015 22:39:34 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jan 2015 22:39:34 +0000 Date: Tue, 13 Jan 2015 22:39:34 +0000 (UTC) From: "Marcelo Vanzin (JIRA)" To: hive-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HIVE-9364) Document non-Public API's which Spark SQL uses MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HIVE-9364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14276100#comment-14276100 ] Marcelo Vanzin commented on HIVE-9364: -------------------------------------- Here are three APIs that changed between 0.13 and trunk which are used by SparkSQL: https://github.com/apache/hive/commit/cf7028289dbe39cdbda208286aa4b53086958a8e {code} // old public boolean dropIndex(String baseTableName, String index_name, boolean deleteData) throws HiveException { // new public boolean dropIndex(String baseTableName, String index_name, boolean throwException, boolean deleteData) throws HiveException { {code} https://github.com/apache/hive/commit/29b88a117ca3900a83eaab44c74b27164493fc56 {code} // old public Path getExternalTmpPath(URI extURI) { // new public Path getExternalTmpPath(Path path) { {code} https://github.com/apache/hive/commit/9243cbbfe2f22b7ab0453d8766c6d5ae333be368 {code} // old public ArrayList> loadDynamicPartitions(Path loadPath, String tableName, Map partSpec, boolean replace, int numDP, boolean holdDDLTime, boolean listBucketingEnabled, boolean isAcid) throws HiveException { // new public Map, Partition> loadDynamicPartitions(Path loadPath, String tableName, Map partSpec, boolean replace, int numDP, boolean holdDDLTime, boolean listBucketingEnabled, boolean isAcid) throws HiveException { {code} {code} // old public void loadPartition(Path loadPath, String tableName, Map partSpec, boolean replace, boolean holdDDLTime, boolean inheritTableSpecs, boolean isSkewedStoreAsSubdir, boolean isSrcLocal, boolean isAcid) throws HiveException { // new public Partition loadPartition(Path loadPath, Table tbl, Map partSpec, boolean replace, boolean holdDDLTime, boolean inheritTableSpecs, boolean isSkewedStoreAsSubdir, boolean isSrcLocal, boolean isAcid) throws HiveException { {code} (For loadDynamicPartitions, there's an extra change, https://github.com/apache/hive/commit/2568066d, which added the "isAcid" argument.) > Document non-Public API's which Spark SQL uses > ---------------------------------------------- > > Key: HIVE-9364 > URL: https://issues.apache.org/jira/browse/HIVE-9364 > Project: Hive > Issue Type: Sub-task > Components: API > Reporter: Brock Noland > Fix For: 1.0.0 > > -- This message was sent by Atlassian JIRA (v6.3.4#6332)