mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 17:48:29 +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
|
||||
}
|
||||
|
||||
// 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
|
||||
// services in querynode package.
|
||||
//
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user