Fixed a typo in the SQL statement (#21872)
* Fixed a typo in the SQL statement * Fixed additional two errors in the postgres database objects
This commit is contained in:
@ -47,7 +47,8 @@ Create TYPE "TransactionErrorCode" AS ENUM (
|
|||||||
'WouldExceedMaxAccountCostLimit',
|
'WouldExceedMaxAccountCostLimit',
|
||||||
'WouldExceedMaxBlockCostLimit',
|
'WouldExceedMaxBlockCostLimit',
|
||||||
'UnsupportedVersion',
|
'UnsupportedVersion',
|
||||||
'InvalidWritableAccount'
|
'InvalidWritableAccount',
|
||||||
|
'WouldExceedMaxAccountDataCostLimit'
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TYPE "TransactionError" AS (
|
CREATE TYPE "TransactionError" AS (
|
||||||
@ -114,7 +115,7 @@ CREATE TYPE "TransactionMessage" AS (
|
|||||||
);
|
);
|
||||||
|
|
||||||
CREATE TYPE "TransactionMessageAddressTableLookup" AS (
|
CREATE TYPE "TransactionMessageAddressTableLookup" AS (
|
||||||
account_key: BYTEA[],
|
account_key BYTEA,
|
||||||
writable_indexes SMALLINT[],
|
writable_indexes SMALLINT[],
|
||||||
readonly_indexes SMALLINT[]
|
readonly_indexes SMALLINT[]
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user