Inheritance: extends Dialect
Beispiel #1
0
 /**
  * @test
  */
 public function shouldReturnSelectForUpdate()
 {
     // given
     $query = new Query();
     $query->table = 'products';
     $query->lockForUpdate = true;
     // when
     $sql = $this->dialect->buildQuery($query);
     // then
     $this->assertEquals('SELECT * FROM products FOR UPDATE', $sql);
 }