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