Skip to content

Commit

Permalink
Merge pull request #184 from chrjorgensen/fix/no-variants-in-SQL
Browse files Browse the repository at this point in the history
Don't use variant characters in SQL statement
  • Loading branch information
worksofliam authored Dec 22, 2023
2 parents 514b141 + 4ecb176 commit e518652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export async function fetchSystemInfo() {
const content = instance.getContent();

const [versionResults, db2LevelResults] = await Promise.all([
content.runSQL(`select OS_VERSION || '.' || OS_RELEASE as VERSION from sysibmadm.env_sys_info`),
content.runSQL(`select OS_VERSION concat '.' concat OS_RELEASE as VERSION from sysibmadm.env_sys_info`),
content.runSQL([
`select max(ptf_group_level) as HIGHEST_DB2_PTF_GROUP_LEVEL`,
`from qsys2.group_ptf_info`,
Expand Down

0 comments on commit e518652

Please sign in to comment.