示例#1
0
 public function testDropTemporaryTable()
 {
     $q = new CreateTableQuery('points');
     $q->temporary();
     $q->column('x')->float(10, 2);
     $q->column('y')->float(10, 2);
     $this->assertQuery($q);
     $q = new DropTableQuery('points');
     $q->temporary();
     $this->assertSql('DROP TEMPORARY TABLE `points`', $q);
     $this->assertQuery($q);
 }