diff --git a/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php b/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php index 58632c4c1..165fa9aed 100644 --- a/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php +++ b/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php @@ -1719,7 +1719,7 @@ abstract class AbstractPlatform */ public function getDateFormatString() { - return 'Y-m-d'; + return '!Y-m-d'; } /** diff --git a/tests/Doctrine/Tests/DBAL/Types/DateTest.php b/tests/Doctrine/Tests/DBAL/Types/DateTest.php index 93313bc82..9f9903a0f 100644 --- a/tests/Doctrine/Tests/DBAL/Types/DateTest.php +++ b/tests/Doctrine/Tests/DBAL/Types/DateTest.php @@ -34,4 +34,11 @@ class DateTest extends \Doctrine\Tests\DbalTestCase instanceof \DateTime ); } + + public function testDateResetsNonDatePartsToZeroUnixTimeValues() + { + $date = $this->_type->convertToPHPValue('1985-09-01', $this->_platform); + + $this->assertEquals('00:00:00', $date->format('H:i:s')); + } } \ No newline at end of file