Skip to content
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

Fixes #187 #190

Merged
merged 2 commits into from
Oct 16, 2019
Merged

Fixes #187 #190

merged 2 commits into from
Oct 16, 2019

Conversation

jonesmz
Copy link
Contributor

@jonesmz jonesmz commented Oct 10, 2019

No description provided.

include/ozo/impl/read.h Outdated Show resolved Hide resolved
@@ -23,10 +23,12 @@ inline Require<RawDataWritable<T>, istream&> read(istream& in, T& out) {

template <typename T>
inline Require<Integral<T> && sizeof(T) == 1, istream&> read(istream& in, T& out) {
out = in.get();
istream::traits_type::int_type c = in.get();
// TODO: Check result of istream::traits_type::not_eof(c)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, but could you please remove this comment and open an appropriate issue instead. I do not believe in TODO comments unfortunately they have no chances to be performed in real life in opposite to ticket or issues, which are always on the board.

Thank you!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm happy to work with you on this, but I think we're getting a little too deep into the minutia here.

You could have created the github issue that you want me to create, and merged this change as is (with or without the TODO: comment)

Instead, we've added another round trip between your team, and mine.

Note that I consider #187 a minor problem. I'm much more concerned with #181 . I'm still unable to use OZO to execute a query in my code. There are so many parts of OZO that are not easy to understand as an end user.

Copy link
Contributor

@thed636 thed636 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot for the contribution and supporting the process! Sometimes it looks too annoying but it brings advantages in the future.

@thed636 thed636 merged commit 8cdf423 into yandex:master Oct 16, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants