1 | <?php |
||
10 | class MariaDb1027PlatformTest extends AbstractMySQLPlatformTestCase |
||
11 | { |
||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | public function createPlatform() : MariaDb1027Platform |
||
19 | |||
20 | public function testHasNativeJsonType() : void |
||
24 | |||
25 | /** |
||
26 | * From MariaDB 10.2.7, JSON type is an alias to LONGTEXT |
||
27 | * @link https://mariadb.com/kb/en/library/json-data-type/ |
||
28 | */ |
||
29 | public function testReturnsJsonTypeDeclarationSQL() : void |
||
33 | |||
34 | public function testInitializesJsonTypeMapping() : void |
||
39 | |||
40 | /** |
||
41 | * Overrides and skips AbstractMySQLPlatformTestCase test regarding propagation |
||
42 | * of unsupported default values for Blob and Text columns. |
||
43 | * |
||
44 | * @see AbstractMySQLPlatformTestCase::testDoesNotPropagateDefaultValuesForUnsupportedColumnTypes() |
||
45 | */ |
||
46 | public function testDoesNotPropagateDefaultValuesForUnsupportedColumnTypes() : void |
||
50 | } |
||
51 |