コード例 #1
0
ファイル: SqlParserTest.php プロジェクト: plan2net/TYPO3.CMS
 /**
  * @test
  * @see http://forge.typo3.org/issues/21688
  */
 public function whereClauseSupportsExistsKeyword()
 {
     $parseString = 'EXISTS (SELECT * FROM tx_crawler_queue WHERE tx_crawler_queue.process_id = tx_crawler_process.process_id AND tx_crawler_queue.exec_time = 0)';
     $result = $this->subject->parseWhereClause($parseString);
     $this->assertInternalType('array', $result);
     $this->assertEmpty($parseString);
 }