Skip to content

Commit e463d3c

Browse files
committed
Dirty fix
1 parent 13f82ae commit e463d3c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ydb/library/workload/benchmark_base/workload.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ void TWorkloadGeneratorBase::GenerateDDLForTable(IOutputStream& result, const NJ
8989
if (Params.GetStoreType() == TWorkloadBaseParams::EStoreType::Column) {
9090
result << " STORE = COLUMN," << Endl;
9191
}
92-
result << " AUTO_PARTITIONING_MIN_PARTITIONS_COUNT = " << table["partitioning"].GetUIntegerSafe(64) << Endl;
92+
result << " AUTO_PARTITIONING_MIN_PARTITIONS_COUNT = " << table["partitioning"].GetUIntegerSafe(64) << ", " << Endl;
93+
result << " AUTO_PARTITIONING_PARTITION_SIZE_MB = 50" << Endl;
9394
}
9495
result << ");" << Endl;
9596
}

0 commit comments

Comments
 (0)