This repository has been archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added glue table indexes (#1377)
* feat: Added glue table partitions and indexes * add comment * added resolver tests and docs * structure adjusted * linter * fix * docs * removed partitions * mock generation
- Loading branch information
Showing
10 changed files
with
422 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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 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,11 @@ | ||
|
||
# Table: aws_glue_database_table_columns | ||
A column in a Table | ||
## Columns | ||
| Name | Type | Description | | ||
| ------------- | ------------- | ----- | | ||
|database_table_cq_id|uuid|Unique CloudQuery ID of aws_glue_database_tables table (FK)| | ||
|name|text|The name of the Column| | ||
|comment|text|A free-form text comment| | ||
|parameters|jsonb|These key-value pairs define properties associated with the column| | ||
|type|text|The data type of the Column| |
This file contains 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,11 @@ | ||
|
||
# Table: aws_glue_database_table_indexes | ||
A descriptor for a partition index in a table | ||
## Columns | ||
| Name | Type | Description | | ||
| ------------- | ------------- | ----- | | ||
|database_table_cq_id|uuid|Unique CloudQuery ID of aws_glue_database_tables table (FK)| | ||
|index_name|text|The name of the partition index| | ||
|index_status|text|The status of the partition index| | ||
|keys|jsonb|A list of one or more keys, as KeySchemaElement structures, for the partition index| | ||
|backfill_errors|jsonb|A list of errors that can occur when registering partition indexes for an existing table| |
This file contains 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
Oops, something went wrong.