Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 4.3k
GH-50944: [C++] Replace RapidJSON with simdjson in JSON chunker#50945
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
base:main
Are you sure you want to change the base?
Changes from all commits
be4c2a1aa6e20da5b89a73f15314b9af8ce182daa49b701289a5cb38e1a55e797da8131da3d4d99357521ae12904772832File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -150,8 +150,7 @@ def test_block_sizes(self): | ||
| for newlines_in_values in [False, True]: | ||
| parse_options.newlines_in_values = newlines_in_values | ||
| read_options.block_size = 4 | ||
| with pytest.raises(ValueError, | ||
| match="try to increase block size"): | ||
| with pytest.raises(ValueError): | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the actual error message in this case? CollaboratorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. JSON chunk error: invalid data at end of document | ||
| self.read_bytes(data, read_options=read_options, | ||
| parse_options=parse_options) | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.