File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff 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 ' ;
You can’t perform that action at this time.
0 commit comments