Current path: home/webdevt/prestashop17/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/
?? Go up: /home/webdevt/prestashop17/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms
<?php
namespace Doctrine\DBAL\Platforms\Keywords;
use function array_merge;
/**
* PostgreSQL 9.2 reserved keywords list.
*/
class PostgreSQL92Keywords extends PostgreSQL91Keywords
{
/**
* {@inheritdoc}
*/
public function getName()
{
return 'PostgreSQL92';
}
/**
* {@inheritdoc}
*
* @link http://www.postgresql.org/docs/9.2/static/sql-keywords-appendix.html
*/
protected function getKeywords()
{
return array_merge(parent::getKeywords(), ['COLLATION']);
}
}