Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,4 @@ Thanks so much to everyone [who has contributed](https://github.com/codefori/vsc
* [@bspotswood](https://github.com/bspotswood)
* [@dcmcdoug](https://github.com/dcmcdoug)
* [@nathaniel-king-navarrete](https://github.com/Nathaniel-King-Navarrete)
* [@e1mais](https://github.com/e1mais)
2 changes: 1 addition & 1 deletion src/filesystems/qsys/extendedContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class ExtendedIBMiContent {
}

let rows = await connection.runSQL(
`select srcdat, srcdta from ${aliasPath}`,
`select case when locate('40',hex(srcdat)) > 0 then 0 else srcdat end as srcdat, srcdta from ${aliasPath}`,
{forceSafe: true}
);

Expand Down
Loading