(mut self, table_name: DynIden)
| 575 | type Statement = SelectStatement; |
| 576 | |
| 577 | fn table_name(mut self, table_name: DynIden) -> SelectStatement { |
| 578 | self.from(table_name); |
| 579 | self |
| 580 | } |
| 581 | } |
| 582 | |
| 583 | impl QueryTable for sea_query::TableCreateStatement { |
no test coverage detected