Repository: tajo Updated Branches: refs/heads/branch-0.11.0 771cfdd43 -> 5ab667a02
TAJO-1815: Catalog store initialization with PostgreSQL failed. Signed-off-by: Hyunsik Choi <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/5ab667a0 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/5ab667a0 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/5ab667a0 Branch: refs/heads/branch-0.11.0 Commit: 5ab667a027d734dbdb81c88691aac609bdc43b56 Parents: 771cfdd Author: Jongyoung Park <[email protected]> Authored: Fri Sep 4 23:02:57 2015 +0900 Committer: Hyunsik Choi <[email protected]> Committed: Sat Sep 5 11:06:15 2015 +0900 ---------------------------------------------------------------------- CHANGES | 3 +++ .../src/main/resources/schemas/postgresql/postgresql.xml | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tajo/blob/5ab667a0/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 42b317e..270fcc0 100644 --- a/CHANGES +++ b/CHANGES @@ -242,6 +242,9 @@ Release 0.11.0 - unreleased BUG FIXES + TAJO-1815: Catalog store initialization with PostgreSQL failed. + (Contributed by Jongyoung Park, Committed by hyunsik) + TAJO-1811: Catalog server address must be set dynamically during test. (jihoon) http://git-wip-us.apache.org/repos/asf/tajo/blob/5ab667a0/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 de64120..8c73ee4 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 @@ -122,7 +122,6 @@ xsi:schemaLocation="http://tajo.apache.org/catalogstore ../DBMSSchemaDefinition. NULL_ORDERS VARCHAR(128) NOT NULL, -- array of null orderings IS_UNIQUE BOOLEAN NOT NULL, IS_CLUSTERED BOOLEAN NOT NULL, - CONSTRAINT INDEXES_PKEY PRIMARY KEY (INDEX_ID), FOREIGN KEY (DB_ID) REFERENCES DATABASES_ (DB_ID) ON DELETE CASCADE, FOREIGN KEY (TID) REFERENCES TABLES (TID) ON DELETE CASCADE )]]>
