mirror of https://github.com/milvus-io/milvus.git
fix: Fix scalar auto index config incorrect version (#32795)
issue: #29309 Signed-off-by: Cai Zhang <cai.zhang@zilliz.com>pull/32734/head
parent
02bf47f295
commit
a5d1135512
|
@ -117,7 +117,7 @@ func (p *autoIndexConfig) init(base *BaseTable) {
|
|||
|
||||
p.ScalarAutoIndexEnable = ParamItem{
|
||||
Key: "scalarAutoIndex.enable",
|
||||
Version: "2.3.4",
|
||||
Version: "2.4.0",
|
||||
DefaultValue: "false",
|
||||
PanicIfEmpty: true,
|
||||
}
|
||||
|
@ -125,7 +125,7 @@ func (p *autoIndexConfig) init(base *BaseTable) {
|
|||
|
||||
p.ScalarAutoIndexParams = ParamItem{
|
||||
Key: "scalarAutoIndex.params.build",
|
||||
Version: "2.3.4",
|
||||
Version: "2.4.0",
|
||||
DefaultValue: `{"numeric": "INVERTED","varchar": "INVERTED","bool": "INVERTED"}`,
|
||||
}
|
||||
p.ScalarAutoIndexParams.Init(base.mgr)
|
||||
|
|
Loading…
Reference in New Issue