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
e33835d8
Commit
e33835d8
authored
Oct 16, 2014
by
Steve Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix column comment lifecycle
parent
d4005861
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
148 additions
and
15 deletions
+148
-15
AbstractPlatform.php
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+5
-3
PostgreSqlPlatform.php
lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
+7
-4
SQLAnywherePlatform.php
lib/Doctrine/DBAL/Platforms/SQLAnywherePlatform.php
+1
-1
Comparator.php
lib/Doctrine/DBAL/Schema/Comparator.php
+5
-2
DrizzleSchemaManager.php
lib/Doctrine/DBAL/Schema/DrizzleSchemaManager.php
+3
-1
MySqlSchemaManager.php
lib/Doctrine/DBAL/Schema/MySqlSchemaManager.php
+3
-1
OracleSchemaManager.php
lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
+3
-1
PostgreSqlSchemaManager.php
lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php
+3
-1
SQLAnywhereSchemaManager.php
lib/Doctrine/DBAL/Schema/SQLAnywhereSchemaManager.php
+3
-1
SchemaManagerFunctionalTestCase.php
...BAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
+67
-0
ComparatorTest.php
tests/Doctrine/Tests/DBAL/Schema/ComparatorTest.php
+48
-0
No files found.
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
View file @
e33835d8
...
@@ -1574,8 +1574,10 @@ abstract class AbstractPlatform
...
@@ -1574,8 +1574,10 @@ abstract class AbstractPlatform
$sql
=
$this
->
_getCreateTableSQL
(
$tableName
,
$columns
,
$options
);
$sql
=
$this
->
_getCreateTableSQL
(
$tableName
,
$columns
,
$options
);
if
(
$this
->
supportsCommentOnStatement
())
{
if
(
$this
->
supportsCommentOnStatement
())
{
foreach
(
$table
->
getColumns
()
as
$column
)
{
foreach
(
$table
->
getColumns
()
as
$column
)
{
if
(
$this
->
getColumnComment
(
$column
))
{
$comment
=
$this
->
getColumnComment
(
$column
);
$sql
[]
=
$this
->
getCommentOnColumnSQL
(
$tableName
,
$column
->
getQuotedName
(
$this
),
$this
->
getColumnComment
(
$column
));
if
(
null
!==
$comment
&&
''
!==
$comment
)
{
$sql
[]
=
$this
->
getCommentOnColumnSQL
(
$tableName
,
$column
->
getQuotedName
(
$this
),
$comment
);
}
}
}
}
}
}
...
@@ -2205,7 +2207,7 @@ abstract class AbstractPlatform
...
@@ -2205,7 +2207,7 @@ abstract class AbstractPlatform
$columnDef
=
$typeDecl
.
$charset
.
$default
.
$notnull
.
$unique
.
$check
.
$collation
;
$columnDef
=
$typeDecl
.
$charset
.
$default
.
$notnull
.
$unique
.
$check
.
$collation
;
}
}
if
(
$this
->
supportsInlineColumnComments
()
&&
isset
(
$field
[
'comment'
])
&&
$field
[
'comment'
])
{
if
(
$this
->
supportsInlineColumnComments
()
&&
isset
(
$field
[
'comment'
])
&&
$field
[
'comment'
]
!==
''
)
{
$columnDef
.=
" COMMENT "
.
$this
->
quoteStringLiteral
(
$field
[
'comment'
]);
$columnDef
.=
" COMMENT "
.
$this
->
quoteStringLiteral
(
$field
[
'comment'
]);
}
}
...
...
lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
View file @
e33835d8
...
@@ -454,7 +454,10 @@ class PostgreSqlPlatform extends AbstractPlatform
...
@@ -454,7 +454,10 @@ class PostgreSqlPlatform extends AbstractPlatform
$query
=
'ADD '
.
$this
->
getColumnDeclarationSQL
(
$column
->
getQuotedName
(
$this
),
$column
->
toArray
());
$query
=
'ADD '
.
$this
->
getColumnDeclarationSQL
(
$column
->
getQuotedName
(
$this
),
$column
->
toArray
());
$sql
[]
=
'ALTER TABLE '
.
$diff
->
getName
()
->
getQuotedName
(
$this
)
.
' '
.
$query
;
$sql
[]
=
'ALTER TABLE '
.
$diff
->
getName
()
->
getQuotedName
(
$this
)
.
' '
.
$query
;
if
(
$comment
=
$this
->
getColumnComment
(
$column
))
{
$comment
=
$this
->
getColumnComment
(
$column
);
if
(
null
!==
$comment
&&
''
!==
$comment
)
{
$commentsSQL
[]
=
$this
->
getCommentOnColumnSQL
(
$diff
->
name
,
$column
->
getName
(),
$comment
);
$commentsSQL
[]
=
$this
->
getCommentOnColumnSQL
(
$diff
->
name
,
$column
->
getName
(),
$comment
);
}
}
}
}
...
@@ -817,7 +820,7 @@ class PostgreSqlPlatform extends AbstractPlatform
...
@@ -817,7 +820,7 @@ class PostgreSqlPlatform extends AbstractPlatform
}
}
);
);
}
}
/**
/**
* {@inheritDoc}
* {@inheritDoc}
*/
*/
...
@@ -825,8 +828,8 @@ class PostgreSqlPlatform extends AbstractPlatform
...
@@ -825,8 +828,8 @@ class PostgreSqlPlatform extends AbstractPlatform
{
{
if
(
in_array
(
strtolower
(
$item
),
$this
->
booleanLiterals
[
'false'
],
true
))
{
if
(
in_array
(
strtolower
(
$item
),
$this
->
booleanLiterals
[
'false'
],
true
))
{
return
false
;
return
false
;
}
}
return
parent
::
convertFromBoolean
(
$item
);
return
parent
::
convertFromBoolean
(
$item
);
}
}
...
...
lib/Doctrine/DBAL/Platforms/SQLAnywherePlatform.php
View file @
e33835d8
...
@@ -143,7 +143,7 @@ class SQLAnywherePlatform extends AbstractPlatform
...
@@ -143,7 +143,7 @@ class SQLAnywherePlatform extends AbstractPlatform
$comment
=
$this
->
getColumnComment
(
$column
);
$comment
=
$this
->
getColumnComment
(
$column
);
if
(
$comment
)
{
if
(
null
!==
$comment
&&
''
!==
$comment
)
{
$commentsSQL
[]
=
$this
->
getCommentOnColumnSQL
(
$diff
->
name
,
$column
->
getQuotedName
(
$this
),
$comment
);
$commentsSQL
[]
=
$this
->
getCommentOnColumnSQL
(
$diff
->
name
,
$column
->
getQuotedName
(
$this
),
$comment
);
}
}
}
}
...
...
lib/Doctrine/DBAL/Schema/Comparator.php
View file @
e33835d8
...
@@ -421,8 +421,11 @@ class Comparator
...
@@ -421,8 +421,11 @@ class Comparator
}
}
}
}
// only allow to delete comment if its set to '' not to null.
// A null value and an empty string are actually equal for a comment so they should not trigger a change.
if
(
$properties1
[
'comment'
]
!==
null
&&
$properties1
[
'comment'
]
!=
$properties2
[
'comment'
])
{
if
(
$properties1
[
'comment'
]
!==
$properties2
[
'comment'
]
&&
!
(
null
===
$properties1
[
'comment'
]
&&
''
===
$properties2
[
'comment'
])
&&
!
(
null
===
$properties2
[
'comment'
]
&&
''
===
$properties1
[
'comment'
])
)
{
$changedProperties
[]
=
'comment'
;
$changedProperties
[]
=
'comment'
;
}
}
...
...
lib/Doctrine/DBAL/Schema/DrizzleSchemaManager.php
View file @
e33835d8
...
@@ -46,7 +46,9 @@ class DrizzleSchemaManager extends AbstractSchemaManager
...
@@ -46,7 +46,9 @@ class DrizzleSchemaManager extends AbstractSchemaManager
'autoincrement'
=>
(
bool
)
$tableColumn
[
'IS_AUTO_INCREMENT'
],
'autoincrement'
=>
(
bool
)
$tableColumn
[
'IS_AUTO_INCREMENT'
],
'scale'
=>
(
int
)
$tableColumn
[
'NUMERIC_SCALE'
],
'scale'
=>
(
int
)
$tableColumn
[
'NUMERIC_SCALE'
],
'precision'
=>
(
int
)
$tableColumn
[
'NUMERIC_PRECISION'
],
'precision'
=>
(
int
)
$tableColumn
[
'NUMERIC_PRECISION'
],
'comment'
=>
(
isset
(
$tableColumn
[
'COLUMN_COMMENT'
])
?
$tableColumn
[
'COLUMN_COMMENT'
]
:
null
),
'comment'
=>
isset
(
$tableColumn
[
'COLUMN_COMMENT'
])
&&
''
!==
$tableColumn
[
'COLUMN_COMMENT'
]
?
$tableColumn
[
'COLUMN_COMMENT'
]
:
null
,
);
);
$column
=
new
Column
(
$tableColumn
[
'COLUMN_NAME'
],
Type
::
getType
(
$type
),
$options
);
$column
=
new
Column
(
$tableColumn
[
'COLUMN_NAME'
],
Type
::
getType
(
$type
),
$options
);
...
...
lib/Doctrine/DBAL/Schema/MySqlSchemaManager.php
View file @
e33835d8
...
@@ -187,7 +187,9 @@ class MySqlSchemaManager extends AbstractSchemaManager
...
@@ -187,7 +187,9 @@ class MySqlSchemaManager extends AbstractSchemaManager
'scale'
=>
null
,
'scale'
=>
null
,
'precision'
=>
null
,
'precision'
=>
null
,
'autoincrement'
=>
(
bool
)
(
strpos
(
$tableColumn
[
'extra'
],
'auto_increment'
)
!==
false
),
'autoincrement'
=>
(
bool
)
(
strpos
(
$tableColumn
[
'extra'
],
'auto_increment'
)
!==
false
),
'comment'
=>
isset
(
$tableColumn
[
'comment'
])
?
$tableColumn
[
'comment'
]
:
null
,
'comment'
=>
isset
(
$tableColumn
[
'comment'
])
&&
$tableColumn
[
'comment'
]
!==
''
?
$tableColumn
[
'comment'
]
:
null
,
);
);
if
(
$scale
!==
null
&&
$precision
!==
null
)
{
if
(
$scale
!==
null
&&
$precision
!==
null
)
{
...
...
lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
View file @
e33835d8
...
@@ -203,7 +203,9 @@ class OracleSchemaManager extends AbstractSchemaManager
...
@@ -203,7 +203,9 @@ class OracleSchemaManager extends AbstractSchemaManager
'length'
=>
$length
,
'length'
=>
$length
,
'precision'
=>
$precision
,
'precision'
=>
$precision
,
'scale'
=>
$scale
,
'scale'
=>
$scale
,
'comment'
=>
(
isset
(
$tableColumn
[
'comments'
]))
?
$tableColumn
[
'comments'
]
:
null
,
'comment'
=>
isset
(
$tableColumn
[
'comments'
])
&&
''
!==
$tableColumn
[
'comments'
]
?
$tableColumn
[
'comments'
]
:
null
,
'platformDetails'
=>
array
(),
'platformDetails'
=>
array
(),
);
);
...
...
lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php
View file @
e33835d8
...
@@ -436,7 +436,9 @@ class PostgreSqlSchemaManager extends AbstractSchemaManager
...
@@ -436,7 +436,9 @@ class PostgreSqlSchemaManager extends AbstractSchemaManager
'fixed'
=>
$fixed
,
'fixed'
=>
$fixed
,
'unsigned'
=>
false
,
'unsigned'
=>
false
,
'autoincrement'
=>
$autoincrement
,
'autoincrement'
=>
$autoincrement
,
'comment'
=>
$tableColumn
[
'comment'
],
'comment'
=>
isset
(
$tableColumn
[
'comment'
])
&&
$tableColumn
[
'comment'
]
!==
''
?
$tableColumn
[
'comment'
]
:
null
,
);
);
$column
=
new
Column
(
$tableColumn
[
'field'
],
Type
::
getType
(
$type
),
$options
);
$column
=
new
Column
(
$tableColumn
[
'field'
],
Type
::
getType
(
$type
),
$options
);
...
...
lib/Doctrine/DBAL/Schema/SQLAnywhereSchemaManager.php
View file @
e33835d8
...
@@ -144,7 +144,9 @@ class SQLAnywhereSchemaManager extends AbstractSchemaManager
...
@@ -144,7 +144,9 @@ class SQLAnywhereSchemaManager extends AbstractSchemaManager
'notnull'
=>
(
bool
)
$tableColumn
[
'notnull'
],
'notnull'
=>
(
bool
)
$tableColumn
[
'notnull'
],
'default'
=>
$default
,
'default'
=>
$default
,
'autoincrement'
=>
(
bool
)
$tableColumn
[
'autoincrement'
],
'autoincrement'
=>
(
bool
)
$tableColumn
[
'autoincrement'
],
'comment'
=>
$tableColumn
[
'comment'
]
'comment'
=>
isset
(
$tableColumn
[
'comment'
])
&&
''
!==
$tableColumn
[
'comment'
]
?
$tableColumn
[
'comment'
]
:
null
,
));
));
}
}
...
...
tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
View file @
e33835d8
...
@@ -887,4 +887,71 @@ class SchemaManagerFunctionalTestCase extends \Doctrine\Tests\DbalFunctionalTest
...
@@ -887,4 +887,71 @@ class SchemaManagerFunctionalTestCase extends \Doctrine\Tests\DbalFunctionalTest
$columns
=
$this
->
_sm
->
listTableColumns
(
"my_table"
);
$columns
=
$this
->
_sm
->
listTableColumns
(
"my_table"
);
$this
->
assertEquals
(
"It's a comment with a quote"
,
$columns
[
'id'
]
->
getComment
());
$this
->
assertEquals
(
"It's a comment with a quote"
,
$columns
[
'id'
]
->
getComment
());
}
}
/**
* @group DBAL-1009
*
* @dataProvider getAlterColumnComment
*/
public
function
testAlterColumnComment
(
$comment1
,
$expectedComment1
,
$comment2
,
$expectedComment2
)
{
if
(
!
$this
->
_conn
->
getDatabasePlatform
()
->
supportsInlineColumnComments
()
&&
!
$this
->
_conn
->
getDatabasePlatform
()
->
supportsCommentOnStatement
()
&&
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
!=
'mssql'
)
{
$this
->
markTestSkipped
(
'Database does not support column comments.'
);
}
$offlineTable
=
new
Table
(
'alter_column_comment_test'
);
$offlineTable
->
addColumn
(
'comment1'
,
'integer'
,
array
(
'comment'
=>
$comment1
));
$offlineTable
->
addColumn
(
'comment2'
,
'integer'
,
array
(
'comment'
=>
$comment2
));
$offlineTable
->
addColumn
(
'no_comment1'
,
'integer'
);
$offlineTable
->
addColumn
(
'no_comment2'
,
'integer'
);
$this
->
_sm
->
dropAndCreateTable
(
$offlineTable
);
$onlineTable
=
$this
->
_sm
->
listTableDetails
(
"alter_column_comment_test"
);
$this
->
assertSame
(
$expectedComment1
,
$onlineTable
->
getColumn
(
'comment1'
)
->
getComment
());
$this
->
assertSame
(
$expectedComment2
,
$onlineTable
->
getColumn
(
'comment2'
)
->
getComment
());
$this
->
assertNull
(
$onlineTable
->
getColumn
(
'no_comment1'
)
->
getComment
());
$this
->
assertNull
(
$onlineTable
->
getColumn
(
'no_comment2'
)
->
getComment
());
$onlineTable
->
changeColumn
(
'comment1'
,
array
(
'comment'
=>
$comment2
));
$onlineTable
->
changeColumn
(
'comment2'
,
array
(
'comment'
=>
$comment1
));
$onlineTable
->
changeColumn
(
'no_comment1'
,
array
(
'comment'
=>
$comment1
));
$onlineTable
->
changeColumn
(
'no_comment2'
,
array
(
'comment'
=>
$comment2
));
$comparator
=
new
Comparator
();
$tableDiff
=
$comparator
->
diffTable
(
$offlineTable
,
$onlineTable
);
$this
->
assertInstanceOf
(
'Doctrine\DBAL\Schema\TableDiff'
,
$tableDiff
);
$this
->
_sm
->
alterTable
(
$tableDiff
);
$onlineTable
=
$this
->
_sm
->
listTableDetails
(
"alter_column_comment_test"
);
$this
->
assertSame
(
$expectedComment2
,
$onlineTable
->
getColumn
(
'comment1'
)
->
getComment
());
$this
->
assertSame
(
$expectedComment1
,
$onlineTable
->
getColumn
(
'comment2'
)
->
getComment
());
$this
->
assertSame
(
$expectedComment1
,
$onlineTable
->
getColumn
(
'no_comment1'
)
->
getComment
());
$this
->
assertSame
(
$expectedComment2
,
$onlineTable
->
getColumn
(
'no_comment2'
)
->
getComment
());
}
public
function
getAlterColumnComment
()
{
return
array
(
array
(
null
,
null
,
' '
,
' '
),
array
(
null
,
null
,
'0'
,
'0'
),
array
(
null
,
null
,
'foo'
,
'foo'
),
array
(
''
,
null
,
' '
,
' '
),
array
(
''
,
null
,
'0'
,
'0'
),
array
(
''
,
null
,
'foo'
,
'foo'
),
array
(
' '
,
' '
,
'0'
,
'0'
),
array
(
' '
,
' '
,
'foo'
,
'foo'
),
array
(
'0'
,
'0'
,
'foo'
,
'foo'
),
);
}
}
}
tests/Doctrine/Tests/DBAL/Schema/ComparatorTest.php
View file @
e33835d8
...
@@ -1122,4 +1122,52 @@ class ComparatorTest extends \PHPUnit_Framework_TestCase
...
@@ -1122,4 +1122,52 @@ class ComparatorTest extends \PHPUnit_Framework_TestCase
$this
->
assertEquals
(
array
(
'notnull'
,
'default'
,
'comment'
),
$comparator
->
diffColumn
(
$column1
,
$column2
));
$this
->
assertEquals
(
array
(
'notnull'
,
'default'
,
'comment'
),
$comparator
->
diffColumn
(
$column1
,
$column2
));
$this
->
assertEquals
(
array
(
'notnull'
,
'default'
,
'comment'
),
$comparator
->
diffColumn
(
$column2
,
$column1
));
$this
->
assertEquals
(
array
(
'notnull'
,
'default'
,
'comment'
),
$comparator
->
diffColumn
(
$column2
,
$column1
));
}
}
/**
* @group DBAL-1009
*
* @dataProvider getCompareColumnComments
*/
public
function
testCompareColumnComments
(
$comment1
,
$comment2
,
$equals
)
{
$column1
=
new
Column
(
'foo'
,
Type
::
getType
(
'integer'
),
array
(
'comment'
=>
$comment1
));
$column2
=
new
Column
(
'foo'
,
Type
::
getType
(
'integer'
),
array
(
'comment'
=>
$comment2
));
$comparator
=
new
Comparator
();
$expectedDiff
=
$equals
?
array
()
:
array
(
'comment'
);
$actualDiff
=
$comparator
->
diffColumn
(
$column1
,
$column2
);
$this
->
assertSame
(
$expectedDiff
,
$actualDiff
);
$actualDiff
=
$comparator
->
diffColumn
(
$column2
,
$column1
);
$this
->
assertSame
(
$expectedDiff
,
$actualDiff
);
}
public
function
getCompareColumnComments
()
{
return
array
(
array
(
null
,
null
,
true
),
array
(
''
,
''
,
true
),
array
(
' '
,
' '
,
true
),
array
(
'0'
,
'0'
,
true
),
array
(
'foo'
,
'foo'
,
true
),
array
(
null
,
''
,
true
),
array
(
null
,
' '
,
false
),
array
(
null
,
'0'
,
false
),
array
(
null
,
'foo'
,
false
),
array
(
''
,
' '
,
false
),
array
(
''
,
'0'
,
false
),
array
(
''
,
'foo'
,
false
),
array
(
' '
,
'0'
,
false
),
array
(
' '
,
'foo'
,
false
),
array
(
'0'
,
'foo'
,
false
),
);
}
}
}
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