Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Connection params #39

Closed
wants to merge 11 commits into from
Closed

Conversation

haleemur
Copy link

@haleemur haleemur commented Mar 2, 2021

No description provided.

haleemur and others added 11 commits December 7, 2020 09:53
execution engine 2 is being rolled out in us-east-1 (and a few other regions) currently.
soon, it will become the default engine athena uses worldwide.

there are some sql-parsing incompatibilities between the two versions when tables are
joined like this

```
form table1
join table2 using (col1, col2)
```

in version 1, it was necessary to specify `col1` as either `table1.col1` or `table2.col1`
in the where clause or select clause. however in version 2, that generates an error

to ensure compatibility across both versions, the simplest thing to do is to avoid specifying
the join as `using (col1, col2)`

this pattern is currently used in fetching the database metadata when executing `dbt docs generate`, so
I was not able to build docs against athena running on execution engine version 2.

with the change, `dbt docs generate` works successfully across both engine versions.
fix `dbt docs generate` for athena execution engines 1 & 2.
fix issue resolving tables from views
added ability to specify athena ctas options
@haleemur haleemur closed this Mar 2, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant