mirror of https://github.com/milvus-io/milvus.git
25 lines
418 B
Go
25 lines
418 B
Go
package planner
|
|
|
|
type NodeSelectSpec struct {
|
|
baseNode
|
|
// TODO(longjiquan)
|
|
}
|
|
|
|
func (n *NodeSelectSpec) String() string {
|
|
return "NodeSelectSpec"
|
|
}
|
|
|
|
func (n *NodeSelectSpec) GetChildren() []Node {
|
|
return nil
|
|
}
|
|
|
|
func (n *NodeSelectSpec) Accept(v Visitor) interface{} {
|
|
return v.VisitSelectSpec(n)
|
|
}
|
|
|
|
func NewNodeSelectSpec(text string) *NodeSelectSpec {
|
|
return &NodeSelectSpec{
|
|
baseNode: newBaseNode(text),
|
|
}
|
|
}
|