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

Struct SetOprStmt

pkg/parser/ast/dml.go:1718–1726  ·  view source on GitHub ↗

SetOprStmt represents "union/except/intersect statement" See https://dev.mysql.com/doc/refman/5.7/en/union.html See https://mariadb.com/kb/en/intersect/ See https://mariadb.com/kb/en/except/

Source from the content-addressed store, hash-verified

1716// See https://mariadb.com/kb/en/intersect/
1717// See https://mariadb.com/kb/en/except/
1718type SetOprStmt struct {
1719 dmlNode
1720
1721 IsInBraces bool
1722 SelectList *SetOprSelectList
1723 OrderBy *OrderByClause
1724 Limit *Limit
1725 With *WithClause
1726}
1727
1728func (*SetOprStmt) resultSet() {}
1729

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected