(self)
| 191 | return total_cost |
| 192 | |
| 193 | def get_tables(self): |
| 194 | if self.args.dbtype == 'mysql': |
| 195 | return self.mysql_get_tables() |
| 196 | else: |
| 197 | return self.pgsql_get_tables() |
| 198 | |
| 199 | # query cost estimated by the optimizer |
| 200 | def cost_estimation(self, sql): |
nothing calls this directly
no outgoing calls
no test coverage detected