Changeset 3470 for trunk/tests/DataDict
- Timestamp:
- 01/08/08 21:22:37 (12 months ago)
- Files:
-
- 1 modified
-
trunk/tests/DataDict/PgsqlTestCase.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/DataDict/PgsqlTestCase.php
r3307 r3470 87 87 $this->assertEqual($type, array('type' => array('blob', 'clob'), 88 88 'length' => null, 89 'unsigned' => null, 89 'unsigned' => null, 90 90 'fixed' => null)); 91 91 } … … 282 282 $a = array('type' => 'float', 'length' => 20, 'fixed' => false); 283 283 284 $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'FLOAT 8');284 $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'FLOAT'); 285 285 } 286 286 public function testGetNativeDefinitionSupportsBooleanType()