This is an automated email from the ASF dual-hosted git repository. zeroshade pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/arrow-go.git
The following commit(s) were added to refs/heads/main by this push: new 2e57003 ci: fix flaky test (#411) 2e57003 is described below commit 2e570031ca8c8ffcb04ef98b6f6618e0905c0574 Author: Matt Topol <zotthewiz...@gmail.com> AuthorDate: Wed Jun 18 11:27:21 2025 -0400 ci: fix flaky test (#411) ### Rationale for this change Fixing flaky bloom filter memory check test ### What changes are included in this PR? Added an additional runtime.GC() call to ensure the releases are called. --- parquet/metadata/bloom_filter_reader_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/parquet/metadata/bloom_filter_reader_test.go b/parquet/metadata/bloom_filter_reader_test.go index 432b90f..fcf0df6 100644 --- a/parquet/metadata/bloom_filter_reader_test.go +++ b/parquet/metadata/bloom_filter_reader_test.go @@ -52,6 +52,7 @@ func (suite *BloomFilterBuilderSuite) SetupTest() { func (suite *BloomFilterBuilderSuite) TearDownTest() { runtime.GC() // we use setfinalizer to clean up the buffers, so run the GC + runtime.GC() suite.mem.AssertSize(suite.T(), 0) }