| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | class CratePlatform1 extends CratePlatform |
||
| 26 | { |
||
| 27 | const TABLE_WHERE_CLAUSE_FORMAT_1 = '%s.table_name = %s AND %s.table_schema = %s'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritDoc} |
||
| 31 | */ |
||
| 32 | 32 | public function getListTablesSQL() |
|
| 33 | { |
||
| 34 | 32 | return "SELECT table_name, table_schema FROM information_schema.tables " . |
|
| 35 | 32 | "WHERE table_schema = 'doc' OR table_schema = 'blob'"; |
|
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritDoc} |
||
| 40 | */ |
||
| 41 | 10 | protected function getTableWhereClauseFormat() |
|
| 44 | } |
||
| 45 | } |
||
| 46 |