(n *tidbast.TableName)
| 359 | } |
| 360 | |
| 361 | func extractTableName(n *tidbast.TableName) ([]table, error) { |
| 362 | if n == nil { |
| 363 | return nil, nil |
| 364 | } |
| 365 | return []table{ |
| 366 | { |
| 367 | table: n.Name.O, |
| 368 | database: n.Schema.O, |
| 369 | }, |
| 370 | }, nil |
| 371 | } |
no outgoing calls
no test coverage detected