mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Try escaping Oracle single quotes
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
46ad6fa3c7
commit
ecc92067bf
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ class OCIFunctionBuilder extends FunctionBuilder {
|
|||
}
|
||||
|
||||
if ($separator === '\'') {
|
||||
$separator = '\\\'';
|
||||
$separator = '\'\'';
|
||||
}
|
||||
|
||||
return new QueryFunction('LISTAGG(' . $this->helper->quoteColumnName($expr) . ", '$separator')$orderByClause");
|
||||
|
|
|
|||
Loading…
Reference in a new issue