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 2015/10/20 20:42:44 UTC

airavata git commit: increasing the size of command to 1000 chars in POSTJOB_COMMAND

Repository: airavata
Updated Branches:
  refs/heads/master 533faee23 -> 72366a9b5


increasing the size of command to 1000 chars in POSTJOB_COMMAND


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

Branch: refs/heads/master
Commit: 72366a9b5f80c0130c7178a2768e45f0d28ed5d5
Parents: 533faee
Author: scnakandala <su...@gmail.com>
Authored: Tue Oct 20 14:42:38 2015 -0400
Committer: scnakandala <su...@gmail.com>
Committed: Tue Oct 20 14:42:38 2015 -0400

----------------------------------------------------------------------
 .../registry/registry-core/src/main/resources/appcatalog-derby.sql | 2 +-
 .../registry/registry-core/src/main/resources/appcatalog-mysql.sql | 2 +-
 .../registry/registry-core/src/test/resources/appcatalog-derby.sql | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata/blob/72366a9b/modules/registry/registry-core/src/main/resources/appcatalog-derby.sql
----------------------------------------------------------------------
diff --git a/modules/registry/registry-core/src/main/resources/appcatalog-derby.sql b/modules/registry/registry-core/src/main/resources/appcatalog-derby.sql
index e68d165..ac2d4fe 100644
--- a/modules/registry/registry-core/src/main/resources/appcatalog-derby.sql
+++ b/modules/registry/registry-core/src/main/resources/appcatalog-derby.sql
@@ -227,7 +227,7 @@ CREATE TABLE PREJOB_COMMAND
 CREATE TABLE POSTJOB_COMMAND
 (
          APPDEPLOYMENT_ID VARCHAR(255),
-         COMMAND VARCHAR(255),
+         COMMAND VARCHAR(1000),
          PRIMARY KEY(APPDEPLOYMENT_ID, COMMAND),
          FOREIGN KEY (APPDEPLOYMENT_ID) REFERENCES APPLICATION_DEPLOYMENT(DEPLOYMENT_ID) ON DELETE CASCADE
 );

http://git-wip-us.apache.org/repos/asf/airavata/blob/72366a9b/modules/registry/registry-core/src/main/resources/appcatalog-mysql.sql
----------------------------------------------------------------------
diff --git a/modules/registry/registry-core/src/main/resources/appcatalog-mysql.sql b/modules/registry/registry-core/src/main/resources/appcatalog-mysql.sql
index 14a8132..b69f766 100644
--- a/modules/registry/registry-core/src/main/resources/appcatalog-mysql.sql
+++ b/modules/registry/registry-core/src/main/resources/appcatalog-mysql.sql
@@ -253,7 +253,7 @@ CREATE TABLE PREJOB_COMMAND
 CREATE TABLE POSTJOB_COMMAND
 (
          APPLICATION_DEPLOYMENT VARCHAR(255),
-         COMMAND VARCHAR(255),
+         COMMAND VARCHAR(1000),
          PRIMARY KEY(APPLICATION_DEPLOYMENT, COMMAND),
          FOREIGN KEY (APPLICATION_DEPLOYMENT) REFERENCES APPLICATION_DEPLOYMENT(DEPLOYMENT_ID) ON DELETE CASCADE
 );

http://git-wip-us.apache.org/repos/asf/airavata/blob/72366a9b/modules/registry/registry-core/src/test/resources/appcatalog-derby.sql
----------------------------------------------------------------------
diff --git a/modules/registry/registry-core/src/test/resources/appcatalog-derby.sql b/modules/registry/registry-core/src/test/resources/appcatalog-derby.sql
index f148e9c..740950e 100644
--- a/modules/registry/registry-core/src/test/resources/appcatalog-derby.sql
+++ b/modules/registry/registry-core/src/test/resources/appcatalog-derby.sql
@@ -227,7 +227,7 @@ CREATE TABLE PREJOB_COMMAND
 CREATE TABLE POSTJOB_COMMAND
 (
          APPDEPLOYMENT_ID VARCHAR(255),
-         COMMAND VARCHAR(255),
+         COMMAND VARCHAR(1000),
          PRIMARY KEY(APPDEPLOYMENT_ID, COMMAND),
          FOREIGN KEY (APPDEPLOYMENT_ID) REFERENCES APPLICATION_DEPLOYMENT(DEPLOYMENT_ID) ON DELETE CASCADE
 );