-
Notifications
You must be signed in to change notification settings - Fork 9
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
Sprint 2 #3
Conversation
TEST_F(StorageDictionarySegmentTest, CompressSegmentString) { | ||
value_segment_str->append("Bill"); | ||
value_segment_str->append("Steve"); | ||
value_segment_str->append("Alexander"); |
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.
<3
EXPECT_EQ(dict_segment->unique_values_count(), 4); | ||
|
||
// Test sorting. | ||
const auto& dict = dict_segment->dictionary(); |
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::is_sorted()
?
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.
Kann man machen, explizit schadet mMn hier nicht. Hab nichts angefasst außer das, wo NULL steht
} | ||
|
||
std::shared_ptr<AbstractSegment> segment; | ||
resolve_data_type("int", [&](auto type) { |
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.
Mit Absicht so umständlich?
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.
Okay, ist wohl Absicht. Alles klar.
No description provided.