-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Summary Adding in the basic function tests provided by [dbt-tests-adapter](https://github.com/dbt-labs/dbt-core/tree/HEAD/tests/adapter). This includes basic tests that every adapter plugin is expected to pass. ### Description Merged[ rest-api-poc branch](https://github.com/dremio/dbt-dremio/tree/rest-api-poc) with this branch, which is why API changes are included. Along with basic tests, changes have been made to impl.py and connections.py so the create_schema macro points to Python code. In this Python code, we use the Dremio rest api to create a space and any required folders. TODO: Implement drop_schema() and the delete call in API. ### Related Issue #6 ### Additional Reviewers @ArgusLi @jlarue26 Co-authored-by: Jared LaRue <[email protected]>
- Loading branch information
1 parent
b9ced2f
commit eb38160
Showing
23 changed files
with
1,381 additions
and
312 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1 +1 @@ | ||
version = "1.1.0b_odbc" | ||
version = "1.1.0b" |
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
## __init__.py | ||
# __init__.py | ||
from .basic import login | ||
from .endpoints import sql_endpoint | ||
from .endpoints import job_status | ||
from .endpoints import ( | ||
delete_catalog, | ||
sql_endpoint, | ||
job_status, | ||
create_catalog_api, | ||
get_catalog_item, | ||
) |
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.