This is an automated email from the ASF dual-hosted git repository.

lichaoyong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new e6bd185  fix default compaction rowset type bug (#2042)
e6bd185 is described below

commit e6bd1855e21646a60870ad711e530e7260a87e3b
Author: kangpinghuang <[email protected]>
AuthorDate: Wed Oct 23 11:08:14 2019 +0800

    fix default compaction rowset type bug (#2042)
---
 be/src/olap/storage_engine.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/olap/storage_engine.cpp b/be/src/olap/storage_engine.cpp
index 9a9bb11..1108925 100644
--- a/be/src/olap/storage_engine.cpp
+++ b/be/src/olap/storage_engine.cpp
@@ -752,7 +752,7 @@ void StorageEngine::_parse_default_rowset_type() {
     if (compaction_rowset_type_config == "BETA") {
         _compaction_rowset_type = BETA_ROWSET;
     } else {
-        _compaction_rowset_type = BETA_ROWSET;
+        _compaction_rowset_type = ALPHA_ROWSET;
     }
 }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to