You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sc...@apache.org on 2017/01/17 18:11:25 UTC

airavata git commit: changing QUEUE_STATUS column lengths

Repository: airavata
Updated Branches:
  refs/heads/develop c4f1141c5 -> 387d5c6e3


changing QUEUE_STATUS column lengths


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

Branch: refs/heads/develop
Commit: 387d5c6e300feb59c331dc22bdb612a46a70b98c
Parents: c4f1141
Author: scnakandala <su...@gmail.com>
Authored: Tue Jan 17 23:41:18 2017 +0530
Committer: scnakandala <su...@gmail.com>
Committed: Tue Jan 17 23:41:18 2017 +0530

----------------------------------------------------------------------
 .../registry-core/src/main/resources/expcatalog-mysql.sql        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata/blob/387d5c6e/modules/registry/registry-core/src/main/resources/expcatalog-mysql.sql
----------------------------------------------------------------------
diff --git a/modules/registry/registry-core/src/main/resources/expcatalog-mysql.sql b/modules/registry/registry-core/src/main/resources/expcatalog-mysql.sql
index 3b7fc38..8d4c99f 100644
--- a/modules/registry/registry-core/src/main/resources/expcatalog-mysql.sql
+++ b/modules/registry/registry-core/src/main/resources/expcatalog-mysql.sql
@@ -377,8 +377,8 @@ CREATE TABLE JOB_STATUS (
 CREATE TABLE QUEUE_STATUS(
   HOST_NAME VARCHAR(255),
   QUEUE_NAME VARCHAR(255),
-  CREATED_TIME INT(11),
-  QUEUE_UP TINYINT(1),
+  CREATED_TIME BIGINT(20),
+  QUEUE_UP     BIT(1),
   RUNNING_JOBS INT(11),
   QUEUED_JOBS INT(11),
   PRIMARY KEY (HOST_NAME, QUEUE_NAME, CREATED_TIME)