Commit 0f428894 authored by Steve Müller's avatar Steve Müller

add missing binary_float and binary_double type mappings

parent d79ce18e
...@@ -862,6 +862,8 @@ LEFT JOIN user_cons_columns r_cols ...@@ -862,6 +862,8 @@ LEFT JOIN user_cons_columns r_cols
'timestamp' => 'datetime', 'timestamp' => 'datetime',
'timestamptz' => 'datetimetz', 'timestamptz' => 'datetimetz',
'float' => 'float', 'float' => 'float',
'binary_float' => 'float',
'binary_double' => 'float',
'long' => 'string', 'long' => 'string',
'clob' => 'text', 'clob' => 'text',
'nclob' => 'text', 'nclob' => 'text',
......
...@@ -165,6 +165,8 @@ class OracleSchemaManager extends AbstractSchemaManager ...@@ -165,6 +165,8 @@ class OracleSchemaManager extends AbstractSchemaManager
$length = null; $length = null;
break; break;
case 'float': case 'float':
case 'binary_float':
case 'binary_double':
$precision = $tableColumn['data_precision']; $precision = $tableColumn['data_precision'];
$scale = $tableColumn['data_scale']; $scale = $tableColumn['data_scale'];
$length = null; $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