-
Notifications
You must be signed in to change notification settings - Fork 119
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
allow-table-extended-to-handle-more-than-2048-chars #326
Merged
andrefurlan-db
merged 2 commits into
databricks:staging-326
from
josephberni:allow-table-extended-to-handle-more-than-2048-chars
May 2, 2023
Merged
allow-table-extended-to-handle-more-than-2048-chars #326
andrefurlan-db
merged 2 commits into
databricks:staging-326
from
josephberni:allow-table-extended-to-handle-more-than-2048-chars
May 2, 2023
Conversation
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
josephberni
requested review from
andrefurlan-db,
susodapop and
ueshin
as code owners
April 28, 2023 14:32
Thanks for the PR. I'll merge to staging-326 and run the integration tests. |
3 tasks
susodapop
pushed a commit
that referenced
this pull request
Jul 24, 2023
<!-- Please review our pull request review process in CONTRIBUTING.md before your proceed. --> Resolves [#326](#326) <!--- Include the number of the issue addressed by this PR above if applicable. Example: resolves #1234 Please review our pull request review process in CONTRIBUTING.md before your proceed. --> ### Description This PR allows the adapter to handle strings of more than 2048 characters when running show tables extended in Databricks. This is currently preventing users from being able to run this command when using dbt if they have a large number of tables in any given schema. The way this is done is that it will pass the `*` in instances where the string length of the pipe separated tables is more than 2048 chars. I have successfully tested both unit tests and `tox -e integration-databricks-sql-endpoint`. ### Checklist - [x] I have run this code in development and it appears to resolve the stated issue - [x] This PR includes tests, or tests are not required/relevant for this PR - [x] I have updated the `CHANGELOG.md` and added information about my change to the "dbt-databricks next" section.
susodapop
pushed a commit
that referenced
this pull request
Jul 24, 2023
benc-db
pushed a commit
to benc-db/dbt-databricks
that referenced
this pull request
Jul 27, 2023
) (databricks#330) Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com> Co-authored-by: Joe Berni <99652623+josephberni@users.noreply.github.com>
susodapop
pushed a commit
that referenced
this pull request
Aug 2, 2023
3 tasks
susodapop
pushed a commit
that referenced
this pull request
Aug 2, 2023
…g users (#404) * Bump version number Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
susodapop
pushed a commit
that referenced
this pull request
Aug 2, 2023
…g users (#404) * Bump version number Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
susodapop
pushed a commit
that referenced
this pull request
Aug 2, 2023
Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
3 tasks
susodapop
pushed a commit
that referenced
this pull request
Aug 2, 2023
Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Resolves #325
Description
This PR allows the adapter to handle strings of more than 2048 characters when running show tables extended in Databricks. This is currently preventing users from being able to run this command when using dbt if they have a large number of tables in any given schema.
The way this is done is that it will pass the
*
in instances where the string length of the pipe separated tables is more than 2048 chars.I have successfully tested both unit tests and
tox -e integration-databricks-sql-endpoint
.Checklist
CHANGELOG.md
and added information about my change to the "dbt-databricks next" section.