mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Don't use SELECT DISTINCT when to_char() is used in a WHERE statement
Nice bug in Oracle Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
16e1d1cb12
commit
aa5e4aacc1
1 changed files with 3 additions and 3 deletions
|
|
@ -147,10 +147,10 @@ class Manager implements IManager {
|
|||
public function getAllConfiguredEvents() {
|
||||
$query = $this->connection->getQueryBuilder();
|
||||
|
||||
$query->selectDistinct('class')
|
||||
->addSelect('entity', 'events')
|
||||
$query->select('class', 'entity', $query->expr()->castColumn('events', IQueryBuilder::PARAM_STR))
|
||||
->from('flow_operations')
|
||||
->where($query->expr()->neq('events', $query->createNamedParameter('[]'), IQueryBuilder::PARAM_STR));
|
||||
->where($query->expr()->neq('events', $query->createNamedParameter('[]'), IQueryBuilder::PARAM_STR))
|
||||
->groupBy('class', 'entity', $query->expr()->castColumn('events', IQueryBuilder::PARAM_STR));
|
||||
|
||||
$result = $query->execute();
|
||||
$operations = [];
|
||||
|
|
|
|||
Loading…
Reference in a new issue