From bca579db4ce5717cbda6bb07b94f843e9b844b52 Mon Sep 17 00:00:00 2001 From: e1mais Date: Sun, 15 Jun 2025 19:19:32 -0600 Subject: [PATCH 1/3] Update SQL query in downloadMemberContentWithDates to handle specific srcdat cases --- src/filesystems/qsys/extendedContent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystems/qsys/extendedContent.ts b/src/filesystems/qsys/extendedContent.ts index 84424d9a8..f274197e4 100644 --- a/src/filesystems/qsys/extendedContent.ts +++ b/src/filesystems/qsys/extendedContent.ts @@ -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} ); From 26ca5c5a72046432096c2e60a8bf1ea55edfbdac Mon Sep 17 00:00:00 2001 From: Ismael Martinez Date: Wed, 25 Jun 2025 16:03:00 -0600 Subject: [PATCH 2/3] Add myself in CONTRIBUTING.md --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ee2d68524..3b0bea71a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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) +* [@elmais](https://github.com/e1mais) From 5760724df04a96a9cac1025dabfa97993b9e2239 Mon Sep 17 00:00:00 2001 From: Ismael Martinez Date: Wed, 25 Jun 2025 21:35:35 -0600 Subject: [PATCH 3/3] Correct misspelled name --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3b0bea71a..a4c9d4462 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -64,4 +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) -* [@elmais](https://github.com/e1mais) +* [@e1mais](https://github.com/e1mais)