-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Add tests for ppl 1 #14885
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
Open
cherylEnkidu
wants to merge
52
commits into
cheryllin/ppl
Choose a base branch
from
cheryllin/ppltests1
base: cheryllin/ppl
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add tests for ppl 1 #14885
Changes from all commits
Commits
Show all changes
52 commits
Select commit
Hold shift + click to select a range
bd0ce8f
create main branch of ppl
cherylEnkidu 84691ab
Add stage API
cherylEnkidu 8519a5e
Add stage API
cherylEnkidu 454893b
Add stage API
cherylEnkidu ed1a19b
API changes
cherylEnkidu 819853c
Add cpp stages and expressions
wu-hui 1be141b
Add more APIs
cherylEnkidu 8fd5f8a
add Field
cherylEnkidu 039b919
merge in main branch
cherylEnkidu 5127bd0
Add UserDataReader support for constant and expr in pipelines
wu-hui 14d2e5c
Add bridge
cherylEnkidu 9895936
merge in push-pqrpmwtupmwv
cherylEnkidu 5d701f8
Add UserDataReader support for constant and expr in pipelines
wu-hui b2af1c6
solve merge conflicts
cherylEnkidu cec7f6b
Fix merge conflicts
cherylEnkidu 30b9251
solve conflicts
cherylEnkidu 1ad093a
format and fix conflicts
cherylEnkidu b59a4fd
Remove placeholder for the test case
cherylEnkidu 7d73155
Support tests
cherylEnkidu 828bb12
Fix bug in decoding
cherylEnkidu d1d0aa4
Add some convert functions
cherylEnkidu 113da45
add tests
cherylEnkidu 39803e5
replace Any with sendable
cherylEnkidu 6c78523
Update PipelineResult
cherylEnkidu 9598764
add expression and stages
cherylEnkidu 5a7f61f
merge changes
cherylEnkidu a5f558f
add tests
cherylEnkidu be5b0b2
change implementation details
cherylEnkidu e699c17
Add get for ppl result
cherylEnkidu daf1b68
revert test settings
cherylEnkidu 5b2bd88
Change cmake version
cherylEnkidu 04a16e2
merge in cmake settings
cherylEnkidu d324c5d
Merge branch 'cheryllin/ppl' into cheryllin/pplapi
cherylEnkidu 23305c0
remove unused variable
cherylEnkidu 6dd3515
revert settinggs
cherylEnkidu 8ff71c2
add expressions
cherylEnkidu 2372405
Add documentation to Pipeline.swift
cherylEnkidu c7ff4b7
merge in main
cherylEnkidu d5be6a0
Merge branch 'cheryllin/ppl' into cheryllin/pplapi
cherylEnkidu 591816b
Fix replace with
cherylEnkidu 0098829
change tests
cherylEnkidu 4fb738d
Address feebacks 2
cherylEnkidu 6ec8b6c
Address feedbacks 3
cherylEnkidu fd51b7b
change mutating fields
cherylEnkidu 469b768
[Firestore] On SPM, import FirebaseFirestoreInternalWrapper (#14848)
ncooke3 ba94c32
add version restrictions
cherylEnkidu d1d1a89
Fix CI tests
cherylEnkidu 65475b6
enable nightly build
cherylEnkidu f4b00ab
revert settings
cherylEnkidu f066ded
add tests and fix bugs
cherylEnkidu 2437141
merge in base branch
cherylEnkidu 71820c7
fix warning
cherylEnkidu 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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
I am leaning towards propagating this error to the Swift layer and making it a fatal error to avoid introducing more throw statement in objective-c layer.
The reason for not making it throwable is I would like not to make the
db.pipeline().collection("")
a throwable function.For more info: go/firestore-ios-sdk-errors
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.
Note: There would be some effort to test the fatal error in Swift, since there is no build in functions in Swift library for that.