From a7c9d753c2c614f8592a750a0bf6f02b63b0c6d7 Mon Sep 17 00:00:00 2001 From: drizk1 Date: Tue, 7 May 2024 11:28:54 -0400 Subject: [PATCH] adds AWS compat --- Project.toml | 1 + docs/examples/UserGuide/athena.jl | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 4495b25..c5be79b 100644 --- a/Project.toml +++ b/Project.toml @@ -20,6 +20,7 @@ SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9" [compat] Arrow = "2.7" +AWS = "1.9" Chain = "0.6" ClickHouse = "0.2" DataFrames = "1.5" diff --git a/docs/examples/UserGuide/athena.jl b/docs/examples/UserGuide/athena.jl index c529aa2..870ac8b 100644 --- a/docs/examples/UserGuide/athena.jl +++ b/docs/examples/UserGuide/athena.jl @@ -38,10 +38,10 @@ # ## `db_table` differences # There are two differences for `db_table` which are seen in the query below # 1. The table needs to be passed as a string in the format database.table, ie `"demodb.table_name` -# 2. db_table requires a third argument: the athena_params shown above. +# 2. `db_table` requires a third argument: the athena_params from above. # ``` -# @chain db_table(AWS_GLOBAL_CONFIG[], "demodb.demodizk", athena_params) begin +# @chain db_table(AWS_GLOBAL_CONFIG[], "demodb.table_name", athena_params) begin # @filter(cyl > 4) # @group_by(cyl) # @summarize(mpg = mean(mpg))