-
Notifications
You must be signed in to change notification settings - Fork 48
feat: allow functions returned from bpd.read_gbq_function
to execute outside of apply
#706
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
20 commits
Select commit
Hold shift + click to select a range
e24944c
feat: allow functions decorated with `@bpd.remote_function` to execut…
tswast 0475c39
fix read_gbq_function
tswast 47b49a9
feat: allow functions returned from `bpd.read_gbq_function` to execut…
tswast 9a3170c
Merge remote-tracking branch 'origin/main' into tswast-remote-functio…
tswast cc11de5
fix for rare case where re-deploy exact same function object
tswast 05724b3
Merge branch 'main' into tswast-remote-function-local-testing
tswast 395b9ee
feat: support type annotations to supply input and output types to `@…
tswast 41f10a0
Merge branch 'main' into b336023152-remote_function-type-annotations
tswast c31d2d4
Merge branch 'main' into tswast-remote-function-local-testing
tswast 1869aba
Merge remote-tracking branch 'origin/main' into b336023152-remote_fun…
tswast 1cf934e
make tests robust to cloud function listing failures too
tswast 59da6f4
Merge remote-tracking branch 'origin/b336023152-remote_function-type-…
tswast 740c7a0
Merge remote-tracking branch 'origin/main' into b336023152-remote_fun…
tswast 682afed
Merge branch 'b336023152-remote_function-type-annotations' into tswas…
tswast 2292fb8
Merge remote-tracking branch 'origin/main' into tswast-remote-functio…
tswast 310dfbc
Merge branch 'tswast-remote-function-local-testing' into tswast-read_…
tswast 98e5f2f
Merge remote-tracking branch 'origin/main' into tswast-read_gbq_funct…
tswast b3d8223
remove unused bigquery_client argument
tswast b1ae0b9
add test that function can be called directly
tswast 1366688
Merge branch 'main' into tswast-read_gbq_function-local-testing
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 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
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.
Outside of system tests, there weren't any code paths that passed in
bigquery_client
but notsession
, so removing this unnecessary logic.