Skip to content

Commit

Permalink
Merge 1b08a06 into 4a95c6b
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Apr 13, 2024
2 parents 4a95c6b + 1b08a06 commit 829a3ee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/QueryBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -770,4 +770,10 @@ public function testJsonColumn()
$qb->insert('json_table', ['json_col' => new JsonExpression(['a' => 1, 'b' => 2])]),
);
}

/** @dataProvider \Yiisoft\Db\Sqlite\Tests\Provider\QueryBuilderProvider::selectScalar */
public function testSelectScalar(array|bool|float|int|string $columns, string $expected): void
{
parent::testSelectScalar($columns, $expected);
}
}

0 comments on commit 829a3ee

Please sign in to comment.