-
Notifications
You must be signed in to change notification settings - Fork 722
Feature: Write to Glue Governed Tables #560
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
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
9893b74
Initial Commit
jaidisido ea9986d
Minor - Refactoring Work Units Logic
jaidisido f235e7d
Major - Checkpoint w/ functional read code/example
jaidisido df1bfb7
Initial Commit
jaidisido 9630dd9
Minor - Refactoring Work Units Logic
jaidisido 55f624d
Major - Checkpoint w/ functional read code/example
jaidisido 3ec606b
Merge branch 'feature/lf-transactions' of https://github.com/awslabs/…
jaidisido 8a501c9
Minor - Removing unnecessary ensure_session
jaidisido f3015b2
Minor - Adding changes from comments and review
jaidisido e42eb44
Minor - Adding Abort, Begin, Commit and Extend transactions
jaidisido 1ca72b1
Merge branch 'main-governed-tables' into feature/lf-transactions
jaidisido e7ad4c8
Minor - Adding missing functions
jaidisido ed2f1b1
Merge branch 'feature/lf-transactions' of https://github.com/awslabs/…
jaidisido dca75f1
Minor - Adding missing @property
jaidisido cea72c4
Minor - Disable too many public methods
jaidisido e47b066
Minor - Checkpoint
jaidisido 4970a39
Major - Governed tables write operations tested
jaidisido be33b0d
Minor - Adding validate flow on branches
jaidisido 424048e
Minor - reducing static checks
jaidisido e6eca7b
Minor - Adding to_csv code
jaidisido 866084b
Minor - Disabling too-many-branches
jaidisido 65a5b09
Major - Ready for release
jaidisido 78194ed
Minor - Proofreading
jaidisido e7cc97f
Minor - Removing needless use_threads argument
jaidisido 9bbd007
Minor - Removing the need to specify table_type when table is already…
jaidisido 16788e3
Minor - Fixing _catalog_id call
jaidisido 6e48f61
Minor - Clarifying SQL filter operation
jaidisido 1108178
Minor - Removing type ignore
jaidisido File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| """Amazon Lake Formation Module.""" | ||
|
|
||
| from awswrangler.lakeformation._read import read_sql_query, read_sql_table # noqa | ||
| from awswrangler.lakeformation._utils import ( # noqa | ||
| abort_transaction, | ||
| begin_transaction, | ||
| commit_transaction, | ||
| extend_transaction, | ||
| wait_query, | ||
| ) | ||
|
|
||
| __all__ = [ | ||
| "read_sql_query", | ||
| "read_sql_table", | ||
| "abort_transaction", | ||
| "begin_transaction", | ||
| "commit_transaction", | ||
| "extend_transaction", | ||
| "wait_query", | ||
| ] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.