From 76326c9a56642a2858d90f2017b0c68159d394cf Mon Sep 17 00:00:00 2001 From: Sanjula Ganepola Date: Fri, 17 Jul 2026 16:09:04 -0400 Subject: [PATCH 1/3] Adjust auto commit and transaction isolation text Signed-off-by: Sanjula Ganepola --- src/views/jobManager/editJob/systemTab.ts | 24 +++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/views/jobManager/editJob/systemTab.ts b/src/views/jobManager/editJob/systemTab.ts index 080df60c..6ed12d15 100644 --- a/src/views/jobManager/editJob/systemTab.ts +++ b/src/views/jobManager/editJob/systemTab.ts @@ -39,13 +39,13 @@ export default function getSystemTab(options: JDBCOptions) { { value: `true`, description: `True`, - text: `Commit (true)`, + text: `true`, selected: options["auto commit"] === true, }, { value: `false`, description: `False`, - text: `No commit (false)`, + text: `false`, selected: options["auto commit"] === false, }, ], @@ -287,32 +287,32 @@ export default function getSystemTab(options: JDBCOptions) { [ { value: `none`, - description: `None`, - text: `No commit (none)`, + description: `No commit (*NC)`, + text: `no commit (*NC)`, selected: options["transaction isolation"] === `none`, }, { value: `read committed`, - description: `Read committed`, - text: `read committed`, + description: `Read committed (*CS)`, + text: `read committed (*CS)`, selected: options["transaction isolation"] === `read committed`, }, { value: `read uncommitted`, - description: `Read uncommitted`, - text: `read uncommitted`, + description: `Read uncommitted (*UR)`, + text: `read uncommitted (*UR)`, selected: options["transaction isolation"] === `read uncommitted`, }, { value: `repeatable read`, - description: `Repeatable read`, - text: `repeatable read`, + description: `Repeatable read (*RS)`, + text: `repeatable read (*RS)`, selected: options["transaction isolation"] === `repeatable read`, }, { value: `serializable`, - description: `Serializable`, - text: `serializable`, + description: `Serializable (*RR)`, + text: `serializable (*RR)`, selected: options["transaction isolation"] === `serializable`, }, ], From 1de8c0f1b3cc552ea0e757ac76772fb45713c42f Mon Sep 17 00:00:00 2001 From: Sanjula Ganepola Date: Fri, 17 Jul 2026 16:14:34 -0400 Subject: [PATCH 2/3] Fix nc Signed-off-by: Sanjula Ganepola --- src/views/jobManager/editJob/systemTab.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/jobManager/editJob/systemTab.ts b/src/views/jobManager/editJob/systemTab.ts index 6ed12d15..d6bd05f8 100644 --- a/src/views/jobManager/editJob/systemTab.ts +++ b/src/views/jobManager/editJob/systemTab.ts @@ -287,8 +287,8 @@ export default function getSystemTab(options: JDBCOptions) { [ { value: `none`, - description: `No commit (*NC)`, - text: `no commit (*NC)`, + description: `None (*NC)`, + text: `none (*NC)`, selected: options["transaction isolation"] === `none`, }, { From 90c7403db7e7ad29f36338c094e338bd5428419d Mon Sep 17 00:00:00 2001 From: Sanjula Ganepola Date: Fri, 17 Jul 2026 17:03:15 -0400 Subject: [PATCH 3/3] Add both alternatives Signed-off-by: Sanjula Ganepola --- src/views/jobManager/editJob/systemTab.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/jobManager/editJob/systemTab.ts b/src/views/jobManager/editJob/systemTab.ts index d6bd05f8..4efa2cf7 100644 --- a/src/views/jobManager/editJob/systemTab.ts +++ b/src/views/jobManager/editJob/systemTab.ts @@ -287,8 +287,8 @@ export default function getSystemTab(options: JDBCOptions) { [ { value: `none`, - description: `None (*NC)`, - text: `none (*NC)`, + description: `None (*NC or *NONE)`, + text: `none (*NC or *NONE)`, selected: options["transaction isolation"] === `none`, }, { @@ -299,14 +299,14 @@ export default function getSystemTab(options: JDBCOptions) { }, { value: `read uncommitted`, - description: `Read uncommitted (*UR)`, - text: `read uncommitted (*UR)`, + description: `Read uncommitted (*UR or *CHG)`, + text: `read uncommitted (*UR or *CHG)`, selected: options["transaction isolation"] === `read uncommitted`, }, { value: `repeatable read`, - description: `Repeatable read (*RS)`, - text: `repeatable read (*RS)`, + description: `Repeatable read (*RS or *ALL)`, + text: `repeatable read (*RS or *ALL)`, selected: options["transaction isolation"] === `repeatable read`, }, {