You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2012/11/13 05:43:47 UTC

svn commit: r1408576 - in /hive/trunk/metastore/scripts/upgrade: derby/ mysql/ oracle/ postgres/

Author: hashutosh
Date: Tue Nov 13 04:43:46 2012
New Revision: 1408576

URL: http://svn.apache.org/viewvc?rev=1408576&view=rev
Log:
HIVE-3704 : name of some metastore scripts are not per convention (Ashutosh Chauhan)

Added:
    hive/trunk/metastore/scripts/upgrade/derby/011-HIVE-3649.derby.sql
      - copied unchanged from r1408573, hive/trunk/metastore/scripts/upgrade/derby/010-HIVE-3649.derby.sql
    hive/trunk/metastore/scripts/upgrade/mysql/011-HIVE-3649.mysql.sql
      - copied unchanged from r1408573, hive/trunk/metastore/scripts/upgrade/mysql/010-HIVE-3649.mysql.sql
    hive/trunk/metastore/scripts/upgrade/oracle/011-HIVE-3649.oracle.sql
      - copied unchanged from r1408573, hive/trunk/metastore/scripts/upgrade/oracle/010-HIVE-3649.oracle.sql
    hive/trunk/metastore/scripts/upgrade/postgres/011-HIVE-3649.postgres.sql
      - copied unchanged from r1408573, hive/trunk/metastore/scripts/upgrade/postgres/010-HIVE-3649.postgres.sql
Removed:
    hive/trunk/metastore/scripts/upgrade/derby/010-HIVE-3649.derby.sql
    hive/trunk/metastore/scripts/upgrade/mysql/010-HIVE-3649.mysql.sql
    hive/trunk/metastore/scripts/upgrade/oracle/010-HIVE-3649.oracle.sql
    hive/trunk/metastore/scripts/upgrade/postgres/010-HIVE-3649.postgres.sql
Modified:
    hive/trunk/metastore/scripts/upgrade/derby/upgrade-0.9.0-to-0.10.0.derby.sql
    hive/trunk/metastore/scripts/upgrade/mysql/upgrade-0.9.0-to-0.10.0.mysql.sql
    hive/trunk/metastore/scripts/upgrade/postgres/upgrade-0.9.0-to-0.10.0.postgres.sql

Modified: hive/trunk/metastore/scripts/upgrade/derby/upgrade-0.9.0-to-0.10.0.derby.sql
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/scripts/upgrade/derby/upgrade-0.9.0-to-0.10.0.derby.sql?rev=1408576&r1=1408575&r2=1408576&view=diff
==============================================================================
--- hive/trunk/metastore/scripts/upgrade/derby/upgrade-0.9.0-to-0.10.0.derby.sql (original)
+++ hive/trunk/metastore/scripts/upgrade/derby/upgrade-0.9.0-to-0.10.0.derby.sql Tue Nov 13 04:43:46 2012
@@ -1,3 +1,3 @@
 -- Upgrade MetaStore schema from 0.9.0 to 0.10.0
 RUN '010-HIVE-3072.derby.sql';
-RUN '010-HIVE-3649.derby.sql';
+RUN '011-HIVE-3649.derby.sql';

Modified: hive/trunk/metastore/scripts/upgrade/mysql/upgrade-0.9.0-to-0.10.0.mysql.sql
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/scripts/upgrade/mysql/upgrade-0.9.0-to-0.10.0.mysql.sql?rev=1408576&r1=1408575&r2=1408576&view=diff
==============================================================================
--- hive/trunk/metastore/scripts/upgrade/mysql/upgrade-0.9.0-to-0.10.0.mysql.sql (original)
+++ hive/trunk/metastore/scripts/upgrade/mysql/upgrade-0.9.0-to-0.10.0.mysql.sql Tue Nov 13 04:43:46 2012
@@ -1,4 +1,4 @@
 SELECT 'Upgrading MetaStore schema from 0.9.0 to 0.10.0' AS ' ';
 SOURCE 010-HIVE-3072.mysql.sql;
-SOURCE 010-HIVE-3649.mysql.sql;
+SOURCE 011-HIVE-3649.mysql.sql;
 SELECT 'Finished upgrading MetaStore schema from 0.9.0 to 0.10.0' AS ' ';

Modified: hive/trunk/metastore/scripts/upgrade/postgres/upgrade-0.9.0-to-0.10.0.postgres.sql
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/scripts/upgrade/postgres/upgrade-0.9.0-to-0.10.0.postgres.sql?rev=1408576&r1=1408575&r2=1408576&view=diff
==============================================================================
--- hive/trunk/metastore/scripts/upgrade/postgres/upgrade-0.9.0-to-0.10.0.postgres.sql (original)
+++ hive/trunk/metastore/scripts/upgrade/postgres/upgrade-0.9.0-to-0.10.0.postgres.sql Tue Nov 13 04:43:46 2012
@@ -1,4 +1,4 @@
 SELECT 'Upgrading MetaStore schema from 0.9.0 to 0.10.0';
 \i 010-HIVE-3072.postgres.sql;
-\i 010-HIVE-3649.postgres.sql;
+\i 011-HIVE-3649.postgres.sql;
 SELECT 'Finished upgrading MetaStore schema from 0.9.0 to 0.10.0';