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"
|
||||
)
|
||||
|
||||
// SearchPlan is a wrapper of the underlying C-structure C.CSearchPlan
|
||||
type SearchPlan struct {
|
||||
cSearchPlan C.CSearchPlan
|
||||
}
|
||||
|
@ -112,6 +113,7 @@ func (pg *searchRequest) delete() {
|
|||
C.DeletePlaceholderGroup(pg.cPlaceholderGroup)
|
||||
}
|
||||
|
||||
// RetrievePlan is a wrapper of the underlying C-structure C.CRetrievePlan
|
||||
type RetrievePlan struct {
|
||||
cRetrievePlan C.CRetrievePlan
|
||||
Timestamp Timestamp
|
||||
|
|
Loading…
Reference in New Issue