mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Correcting omission of group in DboOracle. Fixes #98
This commit is contained in:
parent
4530e706a4
commit
34deb2a18d
1 changed files with 1 additions and 1 deletions
|
@ -905,7 +905,7 @@ class DboOracle extends DboSource {
|
|||
|
||||
switch (strtolower($type)) {
|
||||
case 'select':
|
||||
return "SELECT {$fields} FROM {$table} {$alias} {$joins} {$conditions} {$order} {$limit}";
|
||||
return "SELECT {$fields} FROM {$table} {$alias} {$joins} {$conditions} {$group} {$order} {$limit}";
|
||||
break;
|
||||
case 'create':
|
||||
return "INSERT INTO {$table} ({$fields}) VALUES ({$values})";
|
||||
|
|
Loading…
Reference in a new issue