Skip to content

Commit 8f658c1

Browse files
committed
Merge branch '6.0.x'
Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.com.br>
2 parents 42bfc3e + 136bf83 commit 8f658c1

3 files changed

Lines changed: 6 additions & 13 deletions

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
continue-on-error: ${{ matrix.experimental }}
1616
strategy:
1717
matrix:
18-
php-version: [ '8.2', '8.3', '8.4' ]
18+
php-version: [ '8.2', '8.3', '8.4', '8.5' ]
1919
os: [ ubuntu-latest ]
2020
experimental: [ false ]
2121
composer-options: [ '' ]
2222
include:
23-
- { php-version: '8.5', experimental: true, os: ubuntu-latest, composer-options: '--ignore-platform-req=php+' }
23+
- { php-version: '8.6', experimental: true, os: ubuntu-latest, composer-options: '--ignore-platform-req=php+' }
2424
steps:
2525
- name: Checkout code
2626
uses: actions/checkout@v6
@@ -83,12 +83,12 @@ jobs:
8383
continue-on-error: ${{ matrix.experimental }}
8484
strategy:
8585
matrix:
86-
php-version: [ '8.2', '8.3', '8.4' ]
86+
php-version: [ '8.2', '8.3', '8.4', '8.5' ]
8787
os: [ ubuntu-latest ]
8888
experimental: [ false ]
8989
composer-options: [ '' ]
9090
include:
91-
- { php-version: '8.5', experimental: true, os: ubuntu-latest, composer-options: '--ignore-platform-req=php+' }
91+
- { php-version: '8.6', experimental: true, os: ubuntu-latest, composer-options: '--ignore-platform-req=php+' }
9292
steps:
9393
- name: Checkout code
9494
uses: actions/checkout@v6

tests/Builder/StatementTest.php

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -162,14 +162,8 @@ public static function getAliasesProvider(): array
162162
'shop' => [
163163
'alias' => null,
164164
'tables' => [
165-
'mytable' => [
166-
'alias' => null,
167-
'columns' => ['a' => 'x'],
168-
],
169-
'other' => [
170-
'alias' => 'o',
171-
'columns' => ['b' => 'y'],
172-
],
165+
'mytable' => ['alias' => null, 'columns' => ['a' => 'x']],
166+
'other' => ['alias' => 'o', 'columns' => ['b' => 'y']],
173167
],
174168
],
175169
],

tests/Utils/QueryTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,6 @@ public function testReplaceClauseTableWithDots(): void
666666
$query = 'SELECT * FROM `test.2024-11-01` ORDER BY `test.2024-11-01`.`id` ASC;';
667667

668668
$parser = new Parser($query);
669-
670669
self::assertNotNull($parser->list);
671670

672671
$fromClause = Query::replaceClause($parser->statements[0], $parser->list, 'ORDER BY', '');

0 commit comments

Comments
 (0)