Commit 061045d4 authored by Steve Müller's avatar Steve Müller

Remove SQL Server 2012 specific keywords from base SQL Server keywords list.

parent 1ce755d9
......@@ -32,11 +32,17 @@ namespace Doctrine\DBAL\Platforms\Keywords;
*/
class MsSQLKeywords extends KeywordList
{
/**
* {@inheritdoc}
*/
public function getName()
{
return 'MsSQL';
}
/**
* {@inheritdoc}
*/
protected function getKeywords()
{
return array(
......@@ -238,13 +244,7 @@ class MsSQLKeywords extends KeywordList
'CURRENT_TIME',
'GRANT',
'OPENDATASOURCE',
'SELECT',
'SEMANTICKEYPHRASETABLE',
'SEMANTICSIMILARITYDETAILSTABLE',
'SEMANTICSIMILARITYTABLE',
'TRY_CONVERT',
'WITHIN',
'SEQUENCE'
'SELECT'
);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment