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

View File

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