Return whether or not this instance references the specified column.
(self, table, column)
| 16 | return False |
| 17 | |
| 18 | def references_column(self, table, column): |
| 19 | """ |
| 20 | Return whether or not this instance references the specified column. |
| 21 | """ |
| 22 | return False |
| 23 | |
| 24 | def references_index(self, table, index): |
| 25 | """ |
no outgoing calls
no test coverage detected