10000 Merge branch 'release/v1.1.6' · sunaoka/php-postgresql-errors@38867ca · GitHub
[go: up one dir, main page]

Skip to content

Commit 38867ca

Browse files
committed
Merge branch 'release/v1.1.6'
2 parents 5a297cb + ce9ef5f commit 38867ca

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/generate.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
php-version: '8.2'
1717

1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Generate
2222
run: make
@@ -29,7 +29,7 @@ jobs:
2929
continue-on-error: true
3030

3131
- name: Create Pull Request
32-
uses: peter-evans/create-pull-request@v4
32+
uses: peter-evans/create-pull-request@v6
3333
with:
3434
commit-message: Update Error Code
3535
delete-branch: true

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
tools: composer:v2
3131

3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Install dependencies
3636
run: composer install --quiet --no-ansi --prefer-dist --no-progress --no-interaction
@@ -43,7 +43,7 @@ jobs:
4343
run: vendor/bin/phpunit --coverage-clover=coverage.xml
4444

4545
- name: Upload coverage to Codecov
46-
uses: codecov/codecov-action@v3
46+
uses: codecov/codecov-action@v4
4747
with:
4848
token: ${{ secrets.CODECOV_TOKEN }}
4949
files: ./coverage.xml

src/PostgresError.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ class PostgresError
158158
const NO_ACTIVE_SQL_TRANSACTION = '25P01';
159159
const IN_FAILED_SQL_TRANSACTION = '25P02';
160160
const IDLE_IN_TRANSACTION_SESSION_TIMEOUT = '25P03';
161+
const TRANSACTION_TIMEOUT = '25P04';
161162

162163
// Class 26 - Invalid SQL Statement Name
163164
const INVALID_SQL_STATEMENT_NAME = '26000';

0 commit comments

Comments
 (0)
0