Ejemplo n.º 1
0
 /**
  * (re)create view
  *
  * @param PlatformInterface $platform
  * @param string            $viewName
  */
 private function createView(PlatformInterface $platform, $viewName)
 {
     $sqlStatement = $this->schema->getViewStatement($viewName);
     $sql = $platform->getCreateViewSql($viewName, $sqlStatement);
     $this->conn->exec($sql);
 }
Ejemplo n.º 2
0
 public function testGetViewStatement()
 {
     $sqlStatement = $this->schema->getViewStatement('author_user_view');
     $this->assertTrue(false !== stripos($sqlStatement, 'SELECT'));
 }