From 9871c00805afded1664bb4c11b81e508082b5799 Mon Sep 17 00:00:00 2001 From: lijunwangs Date: Fri, 7 Jan 2022 00:01:09 +0000 Subject: [PATCH] Added TooManyAccountLocks to the PostgreSQL enum types --- accountsdb-plugin-postgres/scripts/create_schema.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/accountsdb-plugin-postgres/scripts/create_schema.sql b/accountsdb-plugin-postgres/scripts/create_schema.sql index 994a2176cfb178..5385663c477da6 100644 --- a/accountsdb-plugin-postgres/scripts/create_schema.sql +++ b/accountsdb-plugin-postgres/scripts/create_schema.sql @@ -48,7 +48,8 @@ Create TYPE "TransactionErrorCode" AS ENUM ( 'WouldExceedMaxBlockCostLimit', 'UnsupportedVersion', 'InvalidWritableAccount', - 'WouldExceedMaxAccountDataCostLimit' + 'WouldExceedMaxAccountDataCostLimit', + 'TooManyAccountLocks' ); CREATE TYPE "TransactionError" AS (