| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | 9 | public function getSql(SqlWalker $sqlWalker) |
|
| 28 | { |
||
| 29 | 9 | switch ($sqlWalker->getConnection()->getDatabasePlatform()->getName()) { |
|
| 30 | 9 | case 'postgresql': |
|
| 31 | 3 | return 'RANDOM()'; |
|
| 32 | 6 | case 'mysql': |
|
| 33 | 3 | return 'RAND()'; |
|
| 34 | 2 | default: |
|
| 35 | 3 | throw new QueryException("You can't use RANDOM()!"); |
|
| 36 | 2 | } |
|
| 37 | } |
||
| 38 | } |
||
| 39 |