Merge pull request #23935 from nextcloud/backport/23921/stable20
[stable20] Fix casting of integer and boolean on Oracle
This commit is contained in:
commit
f8b550dab7
|
@ -170,6 +170,10 @@ class OCIExpressionBuilder extends ExpressionBuilder {
|
||||||
$column = $this->helper->quoteColumnName($column);
|
$column = $this->helper->quoteColumnName($column);
|
||||||
return new QueryFunction('to_char(' . $column . ')');
|
return new QueryFunction('to_char(' . $column . ')');
|
||||||
}
|
}
|
||||||
|
if ($type === IQueryBuilder::PARAM_INT || $type === IQueryBuilder::PARAM_BOOL) {
|
||||||
|
$column = $this->helper->quoteColumnName($column);
|
||||||
|
return new QueryFunction('to_number(to_char(' . $column . '))');
|
||||||
|
}
|
||||||
|
|
||||||
return parent::castColumn($column, $type);
|
return parent::castColumn($column, $type);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue