Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
753 B

<?php
namespace yiiunit\framework\db\oci;
use yii\db\oci\Schema;
use yiiunit\framework\db\QueryBuilderTest;
/**
* @group db
* @group oci
*/
class OracleQueryBuilderTest extends QueryBuilderTest
{
public $driverName = 'oci';
/**
* this is not used as a dataprovider for testGetColumnType to speed up the test
* when used as dataprovider every single line will cause a reconnect with the database which is not needed here
*/
public function columnTypes()
{
return parent::columnTypes() + [
[
Schema::TYPE_BOOLEAN . ' DEFAULT 1 NOT NULL',
$this->boolean()->notNull()->defaultValue(1),
'NUMBER(1) DEFAULT 1 NOT NULL'
],
];
}
}