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

bugfix: bitmap clear method #114

Merged
merged 2 commits into from
Jun 18, 2024
Merged

bugfix: bitmap clear method #114

merged 2 commits into from
Jun 18, 2024

Conversation

761417898
Copy link
Contributor

TEST_F(BitMapTest, Clear) {
common::BitMap bitmap;
bitmap.init(100);
bitmap.set(10);
bitmap.set(20);
bitmap.clear(10);
EXPECT_FALSE(bitmap.test(10)); // This line cannot execute correctly
EXPECT_TRUE(bitmap.test(20));
}

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

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

Hi, this is your first pull request in the Apache TsFile project. Thanks for your contribution! TsFile will be better because of you.

@jt2594838 jt2594838 merged commit b149202 into apache:develop Jun 18, 2024
13 checks passed
JackieTien97 pushed a commit that referenced this pull request Jun 21, 2024
Co-authored-by: hongzhigao <hongzhigao@foxmail.com>
JackieTien97 pushed a commit that referenced this pull request Jun 24, 2024
Co-authored-by: hongzhigao <hongzhigao@foxmail.com>
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.

3 participants