-
Notifications
You must be signed in to change notification settings - Fork 130
feat: Allow read from stream #4906
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: Allow read from stream #4906
Conversation
|
Mind signing the commits to make (DCO https://github.com/vortex-data/vortex/pull/4906/checks?check_run_id=52383374445) happy |
|
We plan on in the future using |
I, Dergousov Maxim <dergousovmaxim99@gmail.com>, hereby add my Signed-off-by to this commit: 928c8b1 Signed-off-by: Dergousov Maxim <dergousovmaxim99@gmail.com>
Codecov Report✅ All modified and coverable lines are covered by tests. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
|
||
| namespace vortex { | ||
|
|
||
| VortexFile VortexFile::Open(const uint8_t *data, size_t length) { |
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.
std::span would be preferable here, though we currently compile with C++17 (span was introduced with C++20). @joseph-isaacs We should discuss bumping to C++20 or considering a library like abseil in order to use span. This is of course not in scope of this PR.
Signed-off-by: Dergousov Maxim <dergousovmaxim99@gmail.com>
50b53f2 to
d19e9af
Compare
joseph-isaacs
left a comment
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.
Thanks for contribution
No description provided.