mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix golint error in querynode (#9747)
Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>pull/9755/head
parent
8bbed24ba9
commit
0da7ed96f7
|
@ -26,6 +26,7 @@ import (
|
||||||
"unsafe"
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// SearchPlan is a wrapper of the underlying C-structure C.CSearchPlan
|
||||||
type SearchPlan struct {
|
type SearchPlan struct {
|
||||||
cSearchPlan C.CSearchPlan
|
cSearchPlan C.CSearchPlan
|
||||||
}
|
}
|
||||||
|
@ -112,6 +113,7 @@ func (pg *searchRequest) delete() {
|
||||||
C.DeletePlaceholderGroup(pg.cPlaceholderGroup)
|
C.DeletePlaceholderGroup(pg.cPlaceholderGroup)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// RetrievePlan is a wrapper of the underlying C-structure C.CRetrievePlan
|
||||||
type RetrievePlan struct {
|
type RetrievePlan struct {
|
||||||
cRetrievePlan C.CRetrievePlan
|
cRetrievePlan C.CRetrievePlan
|
||||||
Timestamp Timestamp
|
Timestamp Timestamp
|
||||||
|
|
Loading…
Reference in New Issue