[DDC-2238] doctrine:schema:update partially broken Created: 11/Jan/13 Updated: 01/May/13 Resolved: 01/May/13 |
|
| Status: | Resolved |
| Project: | Doctrine 2 - ORM |
| Component/s: | Tools |
| Affects Version/s: | 2.3 |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Major |
| Reporter: | Tom Vogt | Assignee: | Benjamin Eberlei |
| Resolution: | Duplicate | Votes: | 0 |
| Labels: | postgresql, schematool | ||
| Environment: |
OS X 10.7.5 also confirmed on: |
||
| Attachments: |
|
||||||||
| Issue Links: |
|
||||||||
| Description |
|
the app/console doctrine:schema:update command generates a seemingly random number of statements like these: ALTER TABLE geodata ALTER humidity SET ; which are obvious invalid SQL commands. The mappings are fine, validate and the application works just fine. Here's an example from the mapping files including two of the above statements: <field name="coast" type="boolean"/> I am using doctrine2-spatial as an extension for GIS information. This problem shows up both in entities using spatial data and entities not using spatial data. I'll gladly help debug this, as right now I can't update my dev database with --force, I need to use --dump-sql and filter out the invalid lines. |
| Comments |
| Comment by Benjamin Eberlei [ 12/Jan/13 ] |
|
Can you dump the SchemaDiff/ColumnDiff instances that are returned from lib/Doctrine/DBAL/Schema/Comparator.php? |
| Comment by Tom Vogt [ 12/Jan/13 ] |
|
requested dump of SchemaDiff |
| Comment by Tom Vogt [ 12/Jan/13 ] |
|
added in the file schemadiff.txt - I added this in Schematool.php - getUpdateSchemaSql(): $comparator = new Comparator(); if you need other output, just tell me what entity to dump and where. I'll be happy to help. The file also contains the buggy update statements it creates towards the end. There's a few non-crucial bugs included, where it alters the geospatial columns to themselves (i.e. river.course already is a geometry/linestring). I don't worry about those because they don't break anything. |
| Comment by Tom Vogt [ 15/Apr/13 ] |
|
Is there any update on this? I'm still having this issue, with many different entities, always the same problem, for example: ALTER TABLE event ALTER priority SET ; Which is an integer field on an entity that doesn't have any GIS elements, so I'm not even sure if it's caused by that anymore. |
| Comment by Benjamin Eberlei [ 01/May/13 ] |
|
Tom Vogt I added a fix for PostgreSQL today, can you verify again if this works? Its included in the 2.3 branch. |
| Comment by Benjamin Eberlei [ 01/May/13 ] |
|
Duplicate of http://www.doctrine-project.org/jira/browse/DBAL-504 |