From d708c00b665d811a24337cadc999013d5159837b Mon Sep 17 00:00:00 2001 From: cavis Date: Tue, 7 May 2024 08:52:19 -0600 Subject: [PATCH] Try without output location --- lib/athena.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/athena.js b/lib/athena.js index 3727016..4630dfc 100644 --- a/lib/athena.js +++ b/lib/athena.js @@ -14,8 +14,7 @@ async function startQuery(client, QueryString, ExecutionParameters = null) { QueryExecutionContext: { Catalog: "AwsDataCatalog", Database: process.env.ATHENA_DB, - }, - OutputLocation: "s3://prx-ryan/why-does-it-not-put-results-here/", + } }; const command = await new StartQueryExecutionCommand(params); const response = await client.send(command);