-
Notifications
You must be signed in to change notification settings - Fork 826
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
Csv disk index #3089
Csv disk index #3089
Conversation
…(rhs or lhs) in operator== and operator!= add unit test for comparing numeric mapnik::values
…e_index_featureset
…on and serialization remove utils/shapeindex/quadtree.hpp
…lue_type stored must have standard layout for correct (de)serialisation + update unit test
@@ -596,6 +608,12 @@ mapnik::featureset_ptr csv_datasource::features(mapnik::query const& q) const | |||
return std::make_shared<csv_inline_featureset>(inline_string_, locator_, separator_, headers_, ctx_, std::move(index_array)); | |||
} | |||
} | |||
else if (has_disk_index_) | |||
{ | |||
std::cerr << "DISK_INDEX" << std::endl; |
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.
@artemp - remove this debug print?
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.
@springmeyer - yes.
@artemp - looking really good / promising. What do you think about a single |
No description provided.