Skip to content

Commit e51d8dd

Browse files
committed
Merge branch 'release/v1.1.7'
2 parents 38867ca + 6c5c817 commit e51d8dd

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/test.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,18 @@ on:
99
jobs:
1010
test:
1111
runs-on: ${{ matrix.os }}
12+
13+
env:
14+
latest_php: 8.3
15+
1216
strategy:
1317
fail-fast: false
1418
matrix:
1519
os: [ ubuntu-latest ]
1620
php: [
1721
'5.3', '5.4', '5.5', '5.6',
1822
'7.0', '7.1', '7.2', '7.3', '7.4',
19-
'8.0', '8.1', '8.2', '8.3'
23+
'8.0', '8.1', '8.2', '8.3', '8.4',
2024
]
2125

2226
name: PHP ${{ matrix.php }}
@@ -36,8 +40,7 @@ jobs:
3640
run: composer install --quiet --no-ansi --prefer-dist --no-progress --no-interaction
3741

3842
- name: Migrate phpunit XML configuration
39-
continue-on-error: true
40-
run: vendor/bin/phpunit --migrate-configuration
43+
run: vendor/bin/phpunit --migrate-configuration || true
4144

4245
- name: Run test suite
4346
run: vendor/bin/phpunit --coverage-clover=coverage.xml
@@ -48,3 +51,4 @@ jobs:
4851
token: ${{ secrets.CODECOV_TOKEN }}
4952
files: ./coverage.xml
5053
fail_ci_if_error: false
54+
if: matrix.php == env.latest_php

src/PostgresError.php

+1
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ class PostgresError
302302
const IO_ERROR = '58030';
303303
const UNDEFINED_FILE = '58P01';
304304
const DUPLICATE_FILE = '58P02';
305+
const FILE_NAME_TOO_LONG = '58P03';
305306

306307
// Class F0 - Configuration File Error
307308
const CONFIG_FILE_ERROR = 'F0000';

0 commit comments

Comments
 (0)