/**
  * @group DBAL-45
  */
 public function testKeywordList()
 {
     $keywordList = $this->_platform->getReservedKeywordsList();
     $this->assertInstanceOf('Doctrine\\DBAL\\Platforms\\Keywords\\KeywordList', $keywordList);
     $this->assertTrue($keywordList->isKeyword('table'));
 }