Commit cd222926 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Merge pull request #405 from deeky666/DBAL-367

[DBAL-367] Add missing Oracle binary_float and binary_double type mappings
parents 72599b7b 0f428894
......@@ -862,6 +862,8 @@ LEFT JOIN user_cons_columns r_cols
'timestamp' => 'datetime',
'timestamptz' => 'datetimetz',
'float' => 'float',
'binary_float' => 'float',
'binary_double' => 'float',
'long' => 'string',
'clob' => 'text',
'nclob' => 'text',
......
......@@ -165,6 +165,8 @@ class OracleSchemaManager extends AbstractSchemaManager
$length = null;
break;
case 'float':
case 'binary_float':
case 'binary_double':
$precision = $tableColumn['data_precision'];
$scale = $tableColumn['data_scale'];
$length = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment