| 30 | ) |
| 31 | |
| 32 | type TableReference struct { |
| 33 | Database string |
| 34 | Schema string |
| 35 | Table string |
| 36 | Alias string |
| 37 | StatementType StatementType |
| 38 | } |
| 39 | |
| 40 | func (t *TableReference) String() string { |
| 41 | if t.Database != "" { |
nothing calls this directly
no outgoing calls
no test coverage detected