Skip to content

Commit c2aaa65

Browse files
suxiaogang223claude
andcommitted
fix: change streaming mode to false in TestReadFilesSystemTableForDatePartition
The test creates a non-PK table with BUCKET=1. With is_streaming_mode=true, this triggers bucketed append mode which requires a bucket-key. The test does not need streaming mode — it only writes one record and verifies files system table output for date partition. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent d497fc0 commit c2aaa65

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/inte/read_inte_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ TEST(SystemTableReadInteTest, TestReadFilesSystemTableForDatePartition) {
853853
ASSERT_OK_AND_ASSIGN(auto helper,
854854
TestHelper::Create(dir->Str(), schema, /*partition_keys=*/{"dt"},
855855
/*primary_keys=*/{}, options,
856-
/*is_streaming_mode=*/true));
856+
/*is_streaming_mode=*/false));
857857

858858
ASSERT_OK_AND_ASSIGN(
859859
std::unique_ptr<RecordBatch> batch,

0 commit comments

Comments
 (0)