Repository: tajo
Updated Branches:
  refs/heads/branch-0.11.0 0f1508dec -> b2b708024


TAJO-1824: Remove partition_keys table from information_schema.


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

Branch: refs/heads/branch-0.11.0
Commit: b2b708024419c15db6111656ce4da84b355e965a
Parents: 0f1508d
Author: JaeHwa Jung <[email protected]>
Authored: Wed Sep 16 12:48:55 2015 +0900
Committer: JaeHwa Jung <[email protected]>
Committed: Wed Sep 16 12:48:55 2015 +0900

----------------------------------------------------------------------
 CHANGES                                                           | 2 ++
 .../tajo/catalog/dictionary/InfoSchemaMetadataDictionary.java     | 3 ---
 2 files changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/b2b70802/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 3f90e5f..437b1f9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -541,6 +541,8 @@ Release 0.11.0 - unreleased
   
   TASKS
 
+    TAJO-1824: Remove partition_keys table from information_schema. (jaehwa)
+
     TAJO-1813: Allow external catalog store for unit testing. (jihoon)
 
     TAJO-1845: Enforcers in the master plan should be printed in a fixed 

http://git-wip-us.apache.org/repos/asf/tajo/blob/b2b70802/tajo-catalog/tajo-catalog-server/src/main/java/org/apache/tajo/catalog/dictionary/InfoSchemaMetadataDictionary.java
----------------------------------------------------------------------
diff --git 
a/tajo-catalog/tajo-catalog-server/src/main/java/org/apache/tajo/catalog/dictionary/InfoSchemaMetadataDictionary.java
 
b/tajo-catalog/tajo-catalog-server/src/main/java/org/apache/tajo/catalog/dictionary/InfoSchemaMetadataDictionary.java
index e0bc54e..17f84d8 100644
--- 
a/tajo-catalog/tajo-catalog-server/src/main/java/org/apache/tajo/catalog/dictionary/InfoSchemaMetadataDictionary.java
+++ 
b/tajo-catalog/tajo-catalog-server/src/main/java/org/apache/tajo/catalog/dictionary/InfoSchemaMetadataDictionary.java
@@ -28,7 +28,6 @@ import org.apache.tajo.catalog.proto.CatalogProtos.StoreType;
 import org.apache.tajo.util.TUtil;
 
 public class InfoSchemaMetadataDictionary {
-  
   private static final String DATABASE_NAME = "information_schema";
   
   private enum DEFINED_TABLES {
@@ -40,7 +39,6 @@ public class InfoSchemaMetadataDictionary {
     TABLEOPTIONS,
     TABLESTATS,
     PARTITIONS,
-    PARTITION_KEYS,
     CLUSTER,
     SESSION,
     MAX_TABLE
@@ -62,7 +60,6 @@ public class InfoSchemaMetadataDictionary {
     schemaInfoTableDescriptors.set(DEFINED_TABLES.TABLEOPTIONS.ordinal(), new 
TableOptionsTableDescriptor(this));
     schemaInfoTableDescriptors.set(DEFINED_TABLES.TABLESTATS.ordinal(), new 
TableStatsTableDescriptor(this));
     schemaInfoTableDescriptors.set(DEFINED_TABLES.PARTITIONS.ordinal(), new 
PartitionsTableDescriptor(this));
-    schemaInfoTableDescriptors.set(DEFINED_TABLES.PARTITION_KEYS.ordinal(), 
new PartitionKeysTableDescriptor(this));
     schemaInfoTableDescriptors.set(DEFINED_TABLES.CLUSTER.ordinal(), new 
ClusterTableDescriptor(this));
     schemaInfoTableDescriptors.set(DEFINED_TABLES.SESSION.ordinal(), new 
SessionTableDescriptor(this));
   }

Reply via email to