Skip to content

Commit

Permalink
Merge pull request #4725 from tsarangi/issue4618
Browse files Browse the repository at this point in the history
Increased cache_dir, task, fwjr_path column sizes
  • Loading branch information
ericvaandering committed Jul 23, 2013
2 parents 76207a1 + 5999756 commit 0923ed4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/python/WMComponent/DBS3Buffer/MySQL/Create.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(self, logger = None, dbi = None, params = None):
"""CREATE TABLE dbsbuffer_workflow (
id INTEGER PRIMARY KEY AUTO_INCREMENT,
name VARCHAR(255),
task VARCHAR(550),
task VARCHAR(1100),
block_close_max_wait_time INTEGER UNSIGNED,
block_close_max_files INTEGER UNSIGNED,
block_close_max_events INTEGER UNSIGNED,
Expand Down
2 changes: 1 addition & 1 deletion src/python/WMComponent/DBS3Buffer/Oracle/Create.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def __init__(self, logger = None, dbi = None, params = None):
"""CREATE TABLE dbsbuffer_workflow (
id INTEGER,
name VARCHAR2(255),
task VARCHAR2(550),
task VARCHAR2(1100),
block_close_max_wait_time INTEGER,
block_close_max_files INTEGER,
block_close_max_events INTEGER,
Expand Down
6 changes: 3 additions & 3 deletions src/python/WMCore/WMBS/CreateWMBSBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def __init__(self, logger = None, dbi = None, params = None):
id INTEGER PRIMARY KEY AUTO_INCREMENT,
spec VARCHAR(550) NOT NULL,
name VARCHAR(255) NOT NULL,
task VARCHAR(550) NOT NULL,
task VARCHAR(1100) NOT NULL,
type VARCHAR(255),
owner INTEGER NOT NULL,
alt_fs_close INT(1) NOT NULL,
Expand Down Expand Up @@ -280,8 +280,8 @@ def __init__(self, logger = None, dbi = None, params = None):
couch_record VARCHAR(255),
location INTEGER,
outcome INTEGER DEFAULT 0,
cache_dir VARCHAR(500) DEFAULT 'None',
fwjr_path VARCHAR(500),
cache_dir VARCHAR(1000) DEFAULT 'None',
fwjr_path VARCHAR(1000),
UNIQUE (name),
FOREIGN KEY (jobgroup) REFERENCES wmbs_jobgroup(id)
ON DELETE CASCADE,
Expand Down
6 changes: 3 additions & 3 deletions src/python/WMCore/WMBS/Oracle/Create.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def __init__(self, logger = None, dbi = None, params = None):
id INTEGER NOT NULL,
spec VARCHAR(500) NOT NULL,
name VARCHAR(255) NOT NULL,
task VARCHAR(500) NOT NULL,
task VARCHAR(1100) NOT NULL,
type VARCHAR(255),
owner INTEGER NOT NULL,
alt_fs_close INTEGER NOT NULL,
Expand Down Expand Up @@ -517,8 +517,8 @@ def __init__(self, logger = None, dbi = None, params = None):
couch_record VARCHAR(255),
location INTEGER,
outcome INTEGER DEFAULT 0,
cache_dir VARCHAR(500) DEFAULT 'None',
fwjr_path VARCHAR(500)
cache_dir VARCHAR(1000) DEFAULT 'None',
fwjr_path VARCHAR(1000)
) %s""" % tablespaceTable

self.indexes["01_pk_wmbs_job"] = \
Expand Down

0 comments on commit 0923ed4

Please sign in to comment.