Fix casting to integer on Oracle
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
93211e7ded
commit
2b0b57d304
|
@ -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) {
|
||||||
|
$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