-
Notifications
You must be signed in to change notification settings - Fork 185
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
Split coordinates file into multiple files, one per dimension #1462
Conversation
263d1f7
to
48b6c5c
Compare
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.
LGTM -- just a few nits
@@ -216,6 +219,12 @@ class ArraySchema { | |||
*/ | |||
Status has_attribute(const std::string& name, bool* has_attr) const; | |||
|
|||
// Returns true if the input name is an attribute |
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.
Add a period at the end of this sentence so that it will be consistent with the other routine comments in this file. Same for line 225.
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.
Good catch, in fact the comment should have Doxygen format.
tiledb/sm/query/reader.cc
Outdated
Status Reader::zip_coord_tiles( | ||
const std::vector<ResultTile*>& tmp_result_tiles) const { | ||
// Initialize zipped coordinate tiles | ||
std::map<URI, std::vector<std::tuple<uint64_t, void*, uint64_t>>> all_regions; |
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.
this appears to be unused in this routine.
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.
Weird that the compiler did not catch it.
…ppropriate changes to Reader. Ensure backwards compatibility.
48b6c5c
to
1065ac8
Compare
Towards addressing #93
__t1_t2_uuid
to__t1_t2_uuid_<format_version>
. That was necessary for backwards compatibility