From 84d02abffb9408e6f40e07922ef41b5e4fcc5829 Mon Sep 17 00:00:00 2001 From: Tigrov Date: Sat, 6 Apr 2024 12:35:54 +0700 Subject: [PATCH] Update tests according main PR --- tests/QueryBuilderTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/QueryBuilderTest.php b/tests/QueryBuilderTest.php index cf1a397b..b1258d16 100644 --- a/tests/QueryBuilderTest.php +++ b/tests/QueryBuilderTest.php @@ -1129,4 +1129,10 @@ public function testAlterColumnWithExpression(): void $this->assertEquals($expected, $sql); } + + /** @dataProvider \Yiisoft\Db\Mssql\Tests\Provider\QueryBuilderProvider::selectScalar */ + public function testSelectScalar(array|bool|float|int $columns, string $expected): void + { + parent::testSelectScalar($columns, $expected); + } }