(self, sql)
| 198 | |
| 199 | # query cost estimated by the optimizer |
| 200 | def cost_estimation(self, sql): |
| 201 | if self.args.dbtype == 'mysql': |
| 202 | return self.mysql_cost_estimation(sql) |
| 203 | else: |
| 204 | return self.pgsql_cost_estimation(sql) |
| 205 | |
| 206 | def compute_table_schema(self): |
| 207 | """ |
nothing calls this directly
no test coverage detected