milvus/internal/mysqld/planner/select_spec.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),
}
}