[refactor](config) Do not let set enable_vectorized_engine throw an error (#19002)

* update

* Update fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java

Co-authored-by: Mingyu Chen <morningman.cmy@gmail.com>

---------

Co-authored-by: Mingyu Chen <morningman.cmy@gmail.com>
This commit is contained in:
Mryange
2023-04-26 12:03:32 +08:00
committed by GitHub
parent 8864266a42
commit 1c8b70a48c

View File

@ -171,6 +171,8 @@ public class SessionVariable implements Serializable, Writable {
public static final long DEFAULT_INSERT_VISIBLE_TIMEOUT_MS = 10_000;
public static final String ENABLE_VECTORIZED_ENGINE = "enable_vectorized_engine";
public static final String EXTRACT_WIDE_RANGE_EXPR = "extract_wide_range_expr";
// If user set a very small value, use this value instead.
@ -532,6 +534,8 @@ public class SessionVariable implements Serializable, Writable {
@VariableMgr.VarAttr(name = EXTRACT_WIDE_RANGE_EXPR, needForward = true)
public boolean extractWideRangeExpr = true;
@VariableMgr.VarAttr(name = ENABLE_VECTORIZED_ENGINE, expType = ExperimentalType.EXPERIMENTAL_ONLINE)
public boolean enableVectorizedEngine = true;
@VariableMgr.VarAttr(name = ENABLE_PIPELINE_ENGINE, fuzzy = true, expType = ExperimentalType.EXPERIMENTAL)
public boolean enablePipelineEngine = false;