Fixed QueryBuilterTest for PgSQL

This commit is contained in:
SilverFire - Dmitry Naumenko
2016-02-17 07:42:04 +02:00
parent 4640f7478a
commit 4e4fb02264

View File

@ -126,4 +126,9 @@ class PostgreSQLQueryBuilderTest extends QueryBuilderTest
$sql = $qb->alterColumn('foo1', 'bar', 'reset xyz');
$this->assertEquals($expected, $sql);
}
public function testFromIndexHint()
{
$this->markTestSkipped('Indices forcing is not supported by PostgreSQL');
}
}