|
@@ 291-301 (lines=11) @@
|
| 288 |
|
self::assertEquals(array('CREATE TABLE spatial_table (point LONGTEXT NOT NULL, SPATIAL INDEX spatial_text (point)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = MyISAM'), $sql); |
| 289 |
|
} |
| 290 |
|
|
| 291 |
|
public function testClobTypeDeclarationSQL() |
| 292 |
|
{ |
| 293 |
|
self::assertEquals('TINYTEXT', $this->_platform->getClobTypeDeclarationSQL(array('length' => 1))); |
| 294 |
|
self::assertEquals('TINYTEXT', $this->_platform->getClobTypeDeclarationSQL(array('length' => 255))); |
| 295 |
|
self::assertEquals('TEXT', $this->_platform->getClobTypeDeclarationSQL(array('length' => 256))); |
| 296 |
|
self::assertEquals('TEXT', $this->_platform->getClobTypeDeclarationSQL(array('length' => 65535))); |
| 297 |
|
self::assertEquals('MEDIUMTEXT', $this->_platform->getClobTypeDeclarationSQL(array('length' => 65536))); |
| 298 |
|
self::assertEquals('MEDIUMTEXT', $this->_platform->getClobTypeDeclarationSQL(array('length' => 16777215))); |
| 299 |
|
self::assertEquals('LONGTEXT', $this->_platform->getClobTypeDeclarationSQL(array('length' => 16777216))); |
| 300 |
|
self::assertEquals('LONGTEXT', $this->_platform->getClobTypeDeclarationSQL(array())); |
| 301 |
|
} |
| 302 |
|
|
| 303 |
|
public function testBlobTypeDeclarationSQL() |
| 304 |
|
{ |
|
@@ 303-313 (lines=11) @@
|
| 300 |
|
self::assertEquals('LONGTEXT', $this->_platform->getClobTypeDeclarationSQL(array())); |
| 301 |
|
} |
| 302 |
|
|
| 303 |
|
public function testBlobTypeDeclarationSQL() |
| 304 |
|
{ |
| 305 |
|
self::assertEquals('TINYBLOB', $this->_platform->getBlobTypeDeclarationSQL(array('length' => 1))); |
| 306 |
|
self::assertEquals('TINYBLOB', $this->_platform->getBlobTypeDeclarationSQL(array('length' => 255))); |
| 307 |
|
self::assertEquals('BLOB', $this->_platform->getBlobTypeDeclarationSQL(array('length' => 256))); |
| 308 |
|
self::assertEquals('BLOB', $this->_platform->getBlobTypeDeclarationSQL(array('length' => 65535))); |
| 309 |
|
self::assertEquals('MEDIUMBLOB', $this->_platform->getBlobTypeDeclarationSQL(array('length' => 65536))); |
| 310 |
|
self::assertEquals('MEDIUMBLOB', $this->_platform->getBlobTypeDeclarationSQL(array('length' => 16777215))); |
| 311 |
|
self::assertEquals('LONGBLOB', $this->_platform->getBlobTypeDeclarationSQL(array('length' => 16777216))); |
| 312 |
|
self::assertEquals('LONGBLOB', $this->_platform->getBlobTypeDeclarationSQL(array())); |
| 313 |
|
} |
| 314 |
|
|
| 315 |
|
/** |
| 316 |
|
* @group DBAL-400 |