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

Forward-merge branch-25.02 into branch-25.04 #17802

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cpp/tests/io/orc_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2198,7 +2198,7 @@ TEST_F(OrcChunkedWriterTest, NoDataInSinkWhenNoWrite)

// Tests whether Y dimension of grid sizes depends on the number of row groups
// Disabled because of the high execution time (especially compared to the likelihood of regression)
TEST_F(OrcReaderTest, DISABLE_Over65kRowGroups)
TEST_F(OrcReaderTest, DISABLED_Over65kRowGroups)
{
auto constexpr row_group_size = 512;
constexpr auto num_rows = (1 << 16) * row_group_size + 1;
Expand All @@ -2222,7 +2222,7 @@ TEST_F(OrcReaderTest, DISABLE_Over65kRowGroups)

// Tests whether Y dimension of grid sizes depends on the number of stripes
// Disabled because of the high execution time (especially compared to the likelihood of regression)
TEST_F(OrcReaderTest, DISABLE_Over65kStripes)
TEST_F(OrcReaderTest, DISABLED_Over65kStripes)
{
auto constexpr stripe_size = 512;
constexpr auto num_rows = (1 << 16) * stripe_size + 1;
Expand All @@ -2247,7 +2247,7 @@ TEST_F(OrcReaderTest, DISABLE_Over65kStripes)

// Tests whether Y dimension of grid sizes depends on the number of columns
// Disabled because of the high execution time (especially compared to the likelihood of regression)
TEST_F(OrcWriterTest, DISABLE_Over65kColumns)
TEST_F(OrcWriterTest, DISABLED_Over65kColumns)
{
auto vals_col = random_values<int32_t>(8);
dec64_col col{vals_col.begin(), vals_col.end(), numeric::scale_type{2}};
Expand Down
Loading