-
Notifications
You must be signed in to change notification settings - Fork 119
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
Order index in terms of row slices #1911
base: master
Are you sure you want to change the base?
Conversation
0a9d8b8
to
3d86b88
Compare
3ae7b36
to
0a9d8b8
Compare
0a9d8b8
to
6f4f0b0
Compare
Label error. Requires exactly 1 of: patch, minor, major. Found: replicated |
#ifdef _WIN32 | ||
return r.first ^ _byteswap_uint64(r.second); | ||
#else | ||
return r.first ^ __builtin_bswap64(r.second); | ||
#endif | ||
} | ||
}; | ||
};*/ |
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.
Can this presumably just be removed?
@@ -83,25 +83,25 @@ class IndexWriter { | |||
// one will need to ensure that this holds, otherwise the assumptions in the read pipeline will be | |||
// broken. |
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.
Out of date comment
bool new_col_group = !current_col_.has_value() || *current_col_ < slice.col_range.first; | ||
util::check_arg(!current_row_.has_value() || new_col_group | ||
bool new_row_group = !current_row_.has_value() || *current_row_ < slice.row_range.first; | ||
util::check_arg(!current_row_.has_value() || new_row_group |
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.
util::check_arg(!current_row_.has_value() || new_row_group | |
util::check_arg(!current_col_.has_value() || new_row_group |
Ordering the index in terms of columns doesn't really make any sense, it would be better to order it by row slices.