Skip to content

Commit e518652

Browse files
authored
Merge pull request #184 from chrjorgensen/fix/no-variants-in-SQL
Don't use variant characters in SQL statement
2 parents 514b141 + 4ecb176 commit e518652

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export async function fetchSystemInfo() {
8585
const content = instance.getContent();
8686

8787
const [versionResults, db2LevelResults] = await Promise.all([
88-
content.runSQL(`select OS_VERSION || '.' || OS_RELEASE as VERSION from sysibmadm.env_sys_info`),
88+
content.runSQL(`select OS_VERSION concat '.' concat OS_RELEASE as VERSION from sysibmadm.env_sys_info`),
8989
content.runSQL([
9090
`select max(ptf_group_level) as HIGHEST_DB2_PTF_GROUP_LEVEL`,
9191
`from qsys2.group_ptf_info`,

0 commit comments

Comments
 (0)