fix(fe): add , with json_root property in stmt show create routine load for xx_job (#10929)

Fix issue: https://github.com/apache/doris/issues/10928
This commit is contained in:
吕飞
2022-07-18 16:44:40 +08:00
committed by GitHub
parent 216a55c12c
commit 091e17ecab

View File

@ -1395,7 +1395,7 @@ public abstract class RoutineLoadJob extends AbstractTxnStateChangeCallback impl
appendProperties(sb, PROPS_STRIP_OUTER_ARRAY, isStripOuterArray(), false);
appendProperties(sb, PROPS_NUM_AS_STRING, isNumAsString(), false);
appendProperties(sb, PROPS_FUZZY_PARSE, isFuzzyParse(), false);
appendProperties(sb, PROPS_JSONROOT, getJsonRoot(), true);
appendProperties(sb, PROPS_JSONROOT, getJsonRoot(), false);
appendProperties(sb, LoadStmt.STRICT_MODE, isStrictMode(), false);
appendProperties(sb, LoadStmt.TIMEZONE, getTimezone(), false);
appendProperties(sb, LoadStmt.EXEC_MEM_LIMIT, getMemLimit(), true);