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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,5 @@ Thanks so much to everyone [who has contributed](https://github.com/codefori/vsc
- [@wright4i](https://github.com/wright4i)
- [@SanjulaGanepola](https://github.com/SanjulaGanepola)
- [@bobcozzi](https://github.com/bobcozzi)
- [@Mohammed-Yaseen-Ali-2081](https://github.com/Mohammed-Yaseen-Ali-2081)
- [@Mohammed-Yaseen-Ali-2081](https://github.com/Mohammed-Yaseen-Ali-2081)
- [@eric-simpson](https://github.com/eric-simpson)
4 changes: 2 additions & 2 deletions extension/client/src/requests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export function buildRequestHandlers(client: LanguageClient) {

const dateStr = Date.now().toString().substr(-6);
const randomFile = `R${table.substring(0, 3)}${dateStr}`.substring(0, 10);
const fullPath = `${config.tempLibrary}/${randomFile}`;
const fullPath = `QTEMP/${randomFile}`;

console.log(`Temp OUTFILE: ${fullPath}`);

Expand Down Expand Up @@ -161,7 +161,7 @@ export function buildRequestHandlers(client: LanguageClient) {
const resultCode = outfileRes.code || 0;

if (resultCode === 0) {
const data: any[] = await content.getTable(config.tempLibrary, randomFile, randomFile, true);
const data: any[] = await content.getTable('QTEMP', randomFile, randomFile, true);

console.log(`Temp OUTFILE read. ${data.length} rows.`);

Expand Down