TableSource represents table source with a name.
| 526 | |
| 527 | // TableSource represents table source with a name. |
| 528 | type TableSource struct { |
| 529 | node |
| 530 | |
| 531 | // Source is the source of the data, can be a TableName, |
| 532 | // a SelectStmt, a SetOprStmt, or a JoinNode. |
| 533 | Source ResultSetNode |
| 534 | |
| 535 | // AsName is the alias name of the table source. |
| 536 | AsName model.CIStr |
| 537 | } |
| 538 | |
| 539 | func (*TableSource) resultSet() {} |
| 540 |
nothing calls this directly
no outgoing calls
no test coverage detected