Repository: tajo
Updated Branches:
  refs/heads/branch-0.11.0 ad83927fa -> b4c2c9890


TAJO-1808: Wrong table type problem in catalog.


Project: http://git-wip-us.apache.org/repos/asf/tajo/repo
Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/b4c2c989
Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/b4c2c989
Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/b4c2c989

Branch: refs/heads/branch-0.11.0
Commit: b4c2c98903433a6f6b8298372c1dca6863e2c3d3
Parents: ad83927
Author: Jihoon Son <[email protected]>
Authored: Wed Sep 2 13:23:03 2015 +0900
Committer: Jihoon Son <[email protected]>
Committed: Wed Sep 2 13:23:03 2015 +0900

----------------------------------------------------------------------
 CHANGES                                                           | 2 ++
 .../src/main/resources/schemas/derby/derby.xml                    | 3 ++-
 .../src/main/resources/schemas/mariadb/mariadb.xml                | 3 ++-
 .../src/main/resources/schemas/mysql/mysql.xml                    | 3 ++-
 .../src/main/resources/schemas/oracle/oracle.xml                  | 3 ++-
 .../src/main/resources/schemas/postgresql/postgresql.xml          | 3 ++-
 6 files changed, 12 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/b4c2c989/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 20b229f..6eb6a0e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -232,6 +232,8 @@ Release 0.11.0 - unreleased
 
   BUG FIXES
 
+    TAJO-1808: Wrong table type problem in catalog. (jihoon)
+
     TAJO-1801: Table name is not unique of tableDescMap in QueryMasterTask. 
     (jihoon)
 

http://git-wip-us.apache.org/repos/asf/tajo/blob/b4c2c989/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/derby/derby.xml
----------------------------------------------------------------------
diff --git 
a/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/derby/derby.xml 
b/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/derby/derby.xml
index 500ff71..3ce7e2f 100644
--- 
a/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/derby/derby.xml
+++ 
b/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/derby/derby.xml
@@ -19,6 +19,7 @@
 <tns:store xmlns:tns="http://tajo.apache.org/catalogstore"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://tajo.apache.org/catalogstore 
../DBMSSchemaDefinition.xsd ">
   <!--
       Catalog base version history
+      * 8 - 2015-09-02: Wrong table type problem in catalog (TAJO-1808)
       * 7 - 2015-07-30: Add a column and index for partition keys (TAJO-1346)
       * 6 - 2015-07-24: Merge the index branch into the master branch 
(TAJO-1300)
       * 5 - 2015-06-15: Implement TablespaceManager to load Tablespaces 
(TAJO-1616)
@@ -27,7 +28,7 @@
       * 2 - 2014-06-09: First versioning
       * 1-  Before 2013-03-20
     -->
-       <tns:base version="7">
+       <tns:base version="8">
                <tns:objects>
                        <tns:Object order="0" type="table" name="META">
                                <tns:sql><![CDATA[CREATE TABLE META (VERSION 
INT NOT NULL)]]></tns:sql>

http://git-wip-us.apache.org/repos/asf/tajo/blob/b4c2c989/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mariadb/mariadb.xml
----------------------------------------------------------------------
diff --git 
a/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mariadb/mariadb.xml
 
b/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mariadb/mariadb.xml
index 4583489..e71043e 100644
--- 
a/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mariadb/mariadb.xml
+++ 
b/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mariadb/mariadb.xml
@@ -19,6 +19,7 @@
 <tns:store xmlns:tns="http://tajo.apache.org/catalogstore"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://tajo.apache.org/catalogstore 
../DBMSSchemaDefinition.xsd ">
   <!--
       Catalog base version history
+      * 8 - 2015-09-02: Wrong table type problem in catalog (TAJO-1808)
       * 7 - 2015-07-30: Add a column and index for partition keys (TAJO-1346)
       * 6 - 2015-07-24: Merge the index branch into the master branch 
(TAJO-1300)
       * 5 - 2015-06-15: Implement TablespaceManager to load Tablespaces 
(TAJO-1616)
@@ -27,7 +28,7 @@
       * 2 - 2014-06-09: First versioning
       * 1-  Before 2013-03-20
     -->
-  <tns:base version="7">
+  <tns:base version="8">
     <tns:objects>
       <tns:Object order="0" type="table" name="META">
         <tns:sql><![CDATA[CREATE TABLE META (VERSION INT NOT NULL)]]></tns:sql>

http://git-wip-us.apache.org/repos/asf/tajo/blob/b4c2c989/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mysql/mysql.xml
----------------------------------------------------------------------
diff --git 
a/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mysql/mysql.xml 
b/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mysql/mysql.xml
index 94c4680..ccf71b0 100644
--- 
a/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mysql/mysql.xml
+++ 
b/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mysql/mysql.xml
@@ -19,6 +19,7 @@
 <tns:store xmlns:tns="http://tajo.apache.org/catalogstore"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://tajo.apache.org/catalogstore 
../DBMSSchemaDefinition.xsd ">
   <!--
     Catalog base version history
+    * 8 - 2015-09-02: Wrong table type problem in catalog (TAJO-1808)
     * 7 - 2015-07-30: Add a column and index for partition keys (TAJO-1346)
     * 6 - 2015-07-24: Merge the index branch into the master branch (TAJO-1300)
     * 5 - 2015-06-15: Implement TablespaceManager to load Tablespaces 
(TAJO-1616)
@@ -27,7 +28,7 @@
     * 2 - 2014-06-09: First versioning
     * 1-  Before 2013-03-20
   -->
-  <tns:base version="7">
+  <tns:base version="8">
     <tns:objects>
       <tns:Object order="0" type="table" name="META">
         <tns:sql><![CDATA[CREATE TABLE META (VERSION INT NOT NULL)]]></tns:sql>

http://git-wip-us.apache.org/repos/asf/tajo/blob/b4c2c989/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/oracle/oracle.xml
----------------------------------------------------------------------
diff --git 
a/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/oracle/oracle.xml 
b/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/oracle/oracle.xml
index fb715ae..01cf1ae 100644
--- 
a/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/oracle/oracle.xml
+++ 
b/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/oracle/oracle.xml
@@ -19,6 +19,7 @@
 <tns:store xmlns:tns="http://tajo.apache.org/catalogstore"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://tajo.apache.org/catalogstore 
../DBMSSchemaDefinition.xsd ">
   <!--
       Catalog base version history
+      * 8 - 2015-09-02: Wrong table type problem in catalog (TAJO-1808)
       * 7 - 2015-07-30: Add a column and index for partition keys (TAJO-1346)
       * 6 - 2015-07-24: Merge the index branch into the master branch 
(TAJO-1300)
       * 5 - 2015-06-15: Implement TablespaceManager to load Tablespaces 
(TAJO-1616)
@@ -27,7 +28,7 @@
       * 2 - 2014-06-09: First versioning
       * 1-  Before 2013-03-20
     -->
-  <tns:base version="7">
+  <tns:base version="8">
     <tns:objects>
                <tns:Object order="0" type="table" name="meta">
                        <tns:sql><![CDATA[

http://git-wip-us.apache.org/repos/asf/tajo/blob/b4c2c989/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/postgresql/postgresql.xml
----------------------------------------------------------------------
diff --git 
a/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/postgresql/postgresql.xml
 
b/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/postgresql/postgresql.xml
index b7b94fc..de64120 100644
--- 
a/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/postgresql/postgresql.xml
+++ 
b/tajo-catalog/tajo-catalog-server/src/main/resources/schemas/postgresql/postgresql.xml
@@ -21,6 +21,7 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
 xsi:schemaLocation="http://tajo.apache.org/catalogstore 
../DBMSSchemaDefinition.xsd ">
   <!--
       Catalog base version history
+      * 8 - 2015-09-02: Wrong table type problem in catalog (TAJO-1808)
       * 7 - 2015-07-30: Add a column and index for partition keys (TAJO-1346)
       * 6 - 2015-07-24: Merge the index branch into the master branch 
(TAJO-1300)
       * 5 - 2015-06-15: Implement TablespaceManager to load Tablespaces 
(TAJO-1616)
@@ -30,7 +31,7 @@ xsi:schemaLocation="http://tajo.apache.org/catalogstore 
../DBMSSchemaDefinition.
       * 2 - 2014-06-09: First versioning
       * 1-  Before 2013-03-20
     -->
-       <tns:base version="7">
+       <tns:base version="8">
                <tns:objects>
                        <tns:Object name="META" type="table" order="0">
                                <tns:sql><![CDATA[CREATE TABLE META (VERSION 
INT NOT NULL)]]></tns:sql>

Reply via email to