(n *tidbast.TableSource)
| 352 | } |
| 353 | |
| 354 | func extractTableSource(n *tidbast.TableSource) ([]table, error) { |
| 355 | if n == nil { |
| 356 | return nil, nil |
| 357 | } |
| 358 | return extractResultSetNode(n.Source) |
| 359 | } |
| 360 | |
| 361 | func extractTableName(n *tidbast.TableName) ([]table, error) { |
| 362 | if n == nil { |
no test coverage detected