neza2017 9828a52999 Add create index
Signed-off-by: neza2017 <yefu.chen@zilliz.com>
2021-01-21 10:01:29 +08:00

71 lines
1.7 KiB
Go

package queryservice
import (
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb2"
"github.com/zilliztech/milvus-distributed/internal/proto/querypb"
)
type Client struct {
grpcClient querypb.QueryServiceClient
}
func (c *Client) Init() error {
panic("implement me")
}
func (c *Client) Start() error {
panic("implement me")
}
func (c *Client) Stop() error {
panic("implement me")
}
func (c *Client) GetComponentStates() (*internalpb2.ComponentStates, error) {
panic("implement me")
}
func (c *Client) GetTimeTickChannel() (string, error) {
panic("implement me")
}
func (c *Client) GetStatisticsChannel() (string, error) {
panic("implement me")
}
func (c *Client) RegisterNode(req querypb.RegisterNodeRequest) (querypb.RegisterNodeResponse, error) {
panic("implement me")
}
func (c *Client) ShowCollections(req querypb.ShowCollectionRequest) (querypb.ShowCollectionResponse, error) {
panic("implement me")
}
func (c *Client) LoadCollection(req querypb.LoadCollectionRequest) error {
panic("implement me")
}
func (c *Client) ReleaseCollection(req querypb.ReleaseCollectionRequest) error {
panic("implement me")
}
func (c *Client) ShowPartitions(req querypb.ShowPartitionRequest) (querypb.ShowPartitionResponse, error) {
panic("implement me")
}
func (c *Client) LoadPartitions(req querypb.LoadPartitionRequest) error {
panic("implement me")
}
func (c *Client) ReleasePartitions(req querypb.ReleasePartitionRequest) error {
panic("implement me")
}
func (c *Client) CreateQueryChannel() (querypb.CreateQueryChannelResponse, error) {
panic("implement me")
}
func (c *Client) GetPartitionStates(req querypb.PartitionStatesRequest) (querypb.PartitionStatesResponse, error) {
panic("implement me")
}