for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\DBAL\Platforms\Keywords;
use function array_merge;
/**
* PostgreSQL 9.2 reserved keywords list.
*
* @link www.doctrine-project.org
*/
class PostgreSQL92Keywords extends PostgreSQL91Keywords
{
* {@inheritdoc}
public function getName()
return 'PostgreSQL92';
}
* @link http://www.postgresql.org/docs/9.2/static/sql-keywords-appendix.html
protected function getKeywords()
return array_merge(parent::getKeywords(), ['COLLATION']);