-
Notifications
You must be signed in to change notification settings - Fork 121
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
feat: accepts a table ID, which downloads the table without a query #443
Merged
gcf-merge-on-green
merged 22 commits into
googleapis:main
from
tswast:issue266-read_gbq-no-query
Dec 22, 2021
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
9a9d3fd
feat: accepts a table ID, which downloads the table without a query
tswast 6adf233
add todo for next steps
tswast 73a791a
Merge remote-tracking branch 'upstream/main' into issue266-read_gbq-n…
tswast 9b1eb0d
add unit test for table ID read_gbq
tswast ec9ddaf
add helper for is_query
tswast 9cc7c74
implement read_gbq with table id
tswast dd51ad8
fix remaining tests, don't localalize out-of-bounds timestamp columns
tswast e1ad679
Update pandas_gbq/gbq.py
tswast d29bc2a
fix 3.7 unit tests
tswast cb8f24f
correct coverage
tswast 56b73b2
skip coverage for optional test skip
tswast 8a61e97
fix docs build
tswast 3f7900b
improve test coverage for error case
tswast 3c53f1f
as of google-cloud-bigquery 1.11.0, get_table before list_rows is unn…
tswast 5ce125f
tests with whitespace
tswast ea660f4
type annotations
tswast 6704991
improve coverage in owlbot config
tswast 9a1ca16
🦉 Updates from OwlBot
gcf-owl-bot[bot] a9075df
boost coverage
tswast b3061b6
Merge branch 'issue266-read_gbq-no-query' of github.com:tswast/python…
tswast ed3f9d9
Revert "boost coverage"
tswast b9b017c
don't cover type checking only code, more generic type annotation
tswast 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 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will never be executed during the tests (
TYPE_CHECKING
isFalse
at runtime), thus at some point coverage will complain. Let's add a# pragma: NO COVER
comment to ignore this block.