Skip to content

Commit

Permalink
Fix for ATLASPANDA-981: Increase size of lockedby in jedi_process_lock
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardKaravakis committed May 23, 2024
1 parent 1472901 commit 95f75d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions schema/postgres/sqls/patches/0.0.17.patch.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ ALTER TABLE doma_panda.jobswaiting4 ADD COLUMN outputfiletype varchar(32);

ALTER TABLE doma_pandaarch.jobsarchived ADD COLUMN outputfiletype varchar(32);

ALTER TABLE doma_panda.jedi_process_lock ALTER COLUMN lockedby TYPE varchar(56);
-- Update versions
UPDATE pandadb_version SET major=0, minor=0, patch=17 where component='JEDI';
UPDATE pandadb_version SET major=0, minor=0, patch=17 where component='SERVER';
Expand Down
2 changes: 1 addition & 1 deletion schema/postgres/sqls/pg_PANDA_TABLE.sql
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ CREATE TABLE jedi_process_lock (
prodsourcelabel varchar(20) NOT NULL,
workqueue_id integer NOT NULL,
cloud varchar(10) NOT NULL,
lockedby varchar(40),
lockedby varchar(56),
lockedtime timestamp,
resource_type varchar(56) NOT NULL,
component varchar(56) NOT NULL
Expand Down

0 comments on commit 95f75d5

Please sign in to comment.