Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
0f428894
Commit
0f428894
authored
Nov 07, 2013
by
Steve Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add missing binary_float and binary_double type mappings
parent
d79ce18e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
OraclePlatform.php
lib/Doctrine/DBAL/Platforms/OraclePlatform.php
+2
-0
OracleSchemaManager.php
lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
+2
-0
No files found.
lib/Doctrine/DBAL/Platforms/OraclePlatform.php
View file @
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'
,
...
...
lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
View file @
0f428894
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment