PATH:
home
/
centosnipponia
/
public_html
/
apptt
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
/
Platforms
<?php namespace Doctrine\DBAL\Platforms; use Doctrine\DBAL\Types\Types; /** * Provides the behavior, features and SQL dialect of the MariaDB 10.2 (10.2.7 GA) database platform. * * Note: Should not be used with versions prior to 10.2.7. */ final class MariaDb1027Platform extends MySqlPlatform { /** * {@inheritdoc} * * @link https://mariadb.com/kb/en/library/json-data-type/ */ public function getJsonTypeDeclarationSQL(array $column): string { return 'LONGTEXT'; } protected function getReservedKeywordsClass(): string { return Keywords\MariaDb102Keywords::class; } protected function initializeDoctrineTypeMappings(): void { parent::initializeDoctrineTypeMappings(); $this->doctrineTypeMapping['json'] = Types::JSON; } }
[+]
..
[-] AbstractPlatform.php
[edit]
[-] DB2Platform.php
[edit]
[-] DateIntervalUnit.php
[edit]
[-] DrizzlePlatform.php
[edit]
[+]
Keywords
[-] MariaDb1027Platform.php
[edit]
[-] MySQL57Platform.php
[edit]
[-] MySQL80Platform.php
[edit]
[-] MySqlPlatform.php
[edit]
[-] OraclePlatform.php
[edit]
[-] PostgreSQL100Platform.php
[edit]
[-] PostgreSQL91Platform.php
[edit]
[-] PostgreSQL92Platform.php
[edit]
[-] PostgreSQL94Platform.php
[edit]
[-] PostgreSqlPlatform.php
[edit]
[-] SQLAnywhere11Platform.php
[edit]
[-] SQLAnywhere12Platform.php
[edit]
[-] SQLAnywhere16Platform.php
[edit]
[-] SQLAnywherePlatform.php
[edit]
[-] SQLAzurePlatform.php
[edit]
[-] SQLServer2005Platform.php
[edit]
[-] SQLServer2008Platform.php
[edit]
[-] SQLServer2012Platform.php
[edit]
[-] SQLServerPlatform.php
[edit]
[-] SqlitePlatform.php
[edit]
[-] TrimMode.php
[edit]
[-] .htaccess.disabled
[edit]