mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 10:08:42 +08:00
Add QueryNode implementation Assertion (#9259)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
parent
f34702aca4
commit
1891adb7e3
@ -53,6 +53,12 @@ type Base interface {
|
|||||||
SetIndexCoord(index types.IndexCoord) error
|
SetIndexCoord(index types.IndexCoord) error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// make sure QueryNode implements types.QueryNode
|
||||||
|
var _ types.QueryNode = (*QueryNode)(nil)
|
||||||
|
|
||||||
|
// make sure QueryNode implements Base
|
||||||
|
var _ Base = (*QueryNode)(nil)
|
||||||
|
|
||||||
// QueryNode communicates with outside services and union all
|
// QueryNode communicates with outside services and union all
|
||||||
// services in querynode package.
|
// services in querynode package.
|
||||||
//
|
//
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user