mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 06:37:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			812 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			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);
 | 
						|
    }
 | 
						|
}
 |