Skip to content

Commit

Permalink
adds AWS compat
Browse files Browse the repository at this point in the history
  • Loading branch information
drizk1 committed May 7, 2024
1 parent 5ec3ced commit a7c9d75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions docs/examples/UserGuide/athena.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

2 comments on commit a7c9d75

@drizk1
Copy link
Member Author

@drizk1 drizk1 commented on a7c9d75 May 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • Adds AWS Athena Backend support

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/106350

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.2 -m "<description of version>" a7c9d753c2c614f8592a750a0bf6f02b63b0c6d7
git push origin v0.1.2

Please sign in to comment.