Repository: tajo Updated Branches: refs/heads/master a6334e989 -> 8baaa481e
TAJO-1824: Remove partition_keys table from information_schema. Closes #743 Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/8baaa481 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/8baaa481 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/8baaa481 Branch: refs/heads/master Commit: 8baaa481ee6c627b88ecc21097aaf51f571c4e14 Parents: a6334e9 Author: JaeHwa Jung <[email protected]> Authored: Wed Sep 16 12:46:18 2015 +0900 Committer: JaeHwa Jung <[email protected]> Committed: Wed Sep 16 12:46:18 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/8baaa481/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 521ab20..2804da6 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/8baaa481/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)); }
