MCPcopy
hub / github.com/pingcap/tidb / ResultSetNode

Interface ResultSetNode

pkg/parser/ast/ast.go:125–129  ·  view source on GitHub ↗

ResultSetNode interface has a ResultFields property, represents a Node that returns result set. Implementations include SelectStmt, SubqueryExpr, TableSource, TableName, Join and SetOprStmt.

Source from the content-addressed store, hash-verified

123// ResultSetNode interface has a ResultFields property, represents a Node that returns result set.
124// Implementations include SelectStmt, SubqueryExpr, TableSource, TableName, Join and SetOprStmt.
125type ResultSetNode interface {
126 Node
127
128 resultSet()
129}
130
131// SensitiveStmtNode overloads StmtNode and provides a SecureText method.
132type SensitiveStmtNode interface {

Callers

nothing calls this directly

Implementers 6

Joinpkg/parser/ast/dml.go
TableNamepkg/parser/ast/dml.go
TableSourcepkg/parser/ast/dml.go
SelectStmtpkg/parser/ast/dml.go
SetOprStmtpkg/parser/ast/dml.go
SubqueryExprpkg/parser/ast/expressions.go

Calls

no outgoing calls

Tested by

no test coverage detected