Skip to content

Commit f458bd4

Browse files
committed
fix
1 parent 6e14d95 commit f458bd4

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

src/paimon/common/defs.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,14 @@ const char Options::BLOB_AS_DESCRIPTOR[] = "blob-as-descriptor";
8383
const char Options::GLOBAL_INDEX_ENABLED[] = "global-index.enabled";
8484
const char Options::GLOBAL_INDEX_EXTERNAL_PATH[] = "global-index.external-path";
8585
const char Options::SCAN_TAG_NAME[] = "scan.tag-name";
86-
<<<<<<< HEAD
8786
const char Options::WRITE_ONLY[] = "write-only";
8887
const char Options::COMPACTION_MIN_FILE_NUM[] = "compaction.min.file-num";
8988
const char Options::COMPACTION_FORCE_REWRITE_ALL_FILES[] = "compaction.force-rewrite-all-files";
90-
91-
=======
9289
const char Options::COMPACTION_OPTIMIZATION_INTERVAL[] = "compaction.optimization-interval";
9390
const char Options::COMPACTION_TOTAL_SIZE_THRESHOLD[] = "compaction.total-size-threshold";
9491
const char Options::COMPACTION_INCREMENTAL_SIZE_THRESHOLD[] =
9592
"compaction.incremental-size-threshold";
9693
const char Options::COMPACT_OFFPEAK_START_HOUR[] = "compaction.offpeak.start.hour";
9794
const char Options::COMPACT_OFFPEAK_END_HOUR[] = "compaction.offpeak.end.hour";
9895
const char Options::COMPACTION_OFFPEAK_RATIO[] = "compaction.offpeak-ratio";
99-
>>>>>>> e2d1a61 (feat(compaction): support universal compaction strategy)
10096
} // namespace paimon

src/paimon/core/core_options_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ TEST(CoreOptionsTest, TestFromMap) {
165165
{Options::SCAN_TAG_NAME, "test-tag"},
166166
{Options::WRITE_ONLY, "true"},
167167
{Options::COMPACTION_MIN_FILE_NUM, "10"},
168-
{Options::COMPACTION_FORCE_REWRITE_ALL_FILES, "true"}};
168+
{Options::COMPACTION_FORCE_REWRITE_ALL_FILES, "true"},
169169
{Options::COMPACTION_OPTIMIZATION_INTERVAL, "2s"},
170170
{Options::COMPACTION_TOTAL_SIZE_THRESHOLD, "5 GB"},
171171
{Options::COMPACTION_INCREMENTAL_SIZE_THRESHOLD, "12 kB"},

0 commit comments

Comments
 (0)