Added TooManyAccountLocks to the PostgreSQL enum types (#22348)

Checked w/o waiting for the CI result as currently CI is not validating Postgres changes. Manually verified it fixed the issue
This commit is contained in:
Lijun Wang 2022-01-06 16:48:12 -08:00 committed by GitHub
parent 9cb27613c3
commit b2687b7e70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ Create TYPE "TransactionErrorCode" AS ENUM (
'WouldExceedMaxBlockCostLimit',
'UnsupportedVersion',
'InvalidWritableAccount',
'WouldExceedMaxAccountDataCostLimit'
'WouldExceedMaxAccountDataCostLimit',
'TooManyAccountLocks'
);
CREATE TYPE "TransactionError" AS (