Files
yii2/tests/framework/db/sqlite/QueryTest.php
2022-08-03 12:32:18 +03:00

36 lines
812 B
PHP

<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yiiunit\framework\db\sqlite;
use yii\db\Query;
/**
* @group db
* @group sqlite
*/
class QueryTest extends \yiiunit\framework\db\QueryTest
{
protected $driverName = 'sqlite';
public function testUnion()
{
$connection = $this->getConnection();
$query = new Query();
$query->select(['id', 'name'])
->from('item')
->union(
(new Query())
->select(['id', 'name'])
->from(['category'])
);
$result = $query->all($connection);
$this->assertNotEmpty($result);
$this->assertCount(7, $result);
}
}