Skip to content

Commit b4749b5

Browse files
authored
Merge pull request #94 from connorhu/fix-88
add 'double' check to internal isValueModified check. Fixes #88
2 parents 0ee6863 + 81c839b commit b4749b5

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

lib/Doctrine/Record.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1558,7 +1558,7 @@ protected function _isValueModified($type, $old, $new)
15581558

15591559
if ($type == 'boolean' && (is_bool($old) || is_numeric($old)) && (is_bool($new) || is_numeric($new)) && $old == $new) {
15601560
return false;
1561-
} else if (in_array($type, array('decimal', 'float')) && is_numeric($old) && is_numeric($new)) {
1561+
} else if (in_array($type, array('decimal', 'float', 'double')) && is_numeric($old) && is_numeric($new)) {
15621562
return $old * 100 != $new * 100;
15631563
} else if (in_array($type, array('integer', 'int')) && is_numeric($old) && is_numeric($new)) {
15641564
return $old != $new;

tests/RecordTestCase.php

+12
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public function prepareTables()
4141
$this->tables[] = 'Book';
4242
$this->tables[] = 'EntityAddress';
4343
$this->tables[] = 'UnderscoreColumn';
44+
$this->tables[] = 'Location2';
4445
parent::prepareTables();
4546
}
4647

@@ -1022,4 +1023,15 @@ public function testDeleteReturnBooleanAndThrowsException()
10221023
$this->fail();
10231024
}
10241025
}
1026+
1027+
public function testDoubleIsModified()
1028+
{
1029+
$location = new Location2();
1030+
$location->lat = '12.345';
1031+
1032+
$location->save();
1033+
$location->lat = 12.345;
1034+
1035+
$this->assertFalse($location->isModified());
1036+
}
10251037
}

tests/models/Location2.php

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
class Location2 extends Doctrine_Record
3+
{
4+
public function setTableDefinition()
5+
{
6+
$this->hasColumn('id', 'integer', 10, array('primary' => true));
7+
$this->hasColumn('lat', 'double', 10);
8+
$this->hasColumn('lon', 'double', 10);
9+
}
10+
}

0 commit comments

Comments
 (0)