[Variable] Fix default rowset type variable (#2680)

Fix defaultRowsetType's type description in SessionVariable
This commit is contained in:
kangpinghuang
2020-01-07 10:56:18 +08:00
committed by Mingyu Chen
parent f77171f85d
commit ec860c82c0

View File

@ -217,7 +217,8 @@ public class SessionVariable implements Serializable, Writable {
// the default rowset type flag which will be passed to Backends througth heartbeat
@VariableMgr.VarAttr(name = DEFAULT_ROWSET_TYPE)
public static String defaultRowsetType = "alpha";
private String defaultRowsetType = "alpha";
@VariableMgr.VarAttr(name = USE_V2_ROLLUP)
private boolean useV2Rollup = false;