Fixed a typo in the SQL statement (#21872) (#22075)

* Fixed a typo in the SQL statement

* Fixed additional two errors in the postgres database objects

(cherry picked from commit b610e5503e)

Co-authored-by: Lijun Wang <83639177+lijunwangs@users.noreply.github.com>
This commit is contained in:
mergify[bot]
2021-12-22 22:55:58 +00:00
committed by GitHub
parent 9fbaaa5102
commit 8f26c71964

View File

@ -47,7 +47,8 @@ Create TYPE "TransactionErrorCode" AS ENUM (
'WouldExceedMaxAccountCostLimit',
'WouldExceedMaxBlockCostLimit',
'UnsupportedVersion',
'InvalidWritableAccount'
'InvalidWritableAccount',
'WouldExceedMaxAccountDataCostLimit'
);
CREATE TYPE "TransactionError" AS (
@ -114,7 +115,7 @@ CREATE TYPE "TransactionMessage" AS (
);
CREATE TYPE "TransactionMessageAddressTableLookup" AS (
account_key: BYTEA[],
account_key BYTEA,
writable_indexes SMALLINT[],
readonly_indexes SMALLINT[]
);