Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

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

Merged
merged 1 commit into from
Dec 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions accountsdb-plugin-postgres/scripts/create_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ Create TYPE "TransactionErrorCode" AS ENUM (
'WouldExceedMaxAccountCostLimit',
'WouldExceedMaxBlockCostLimit',
'UnsupportedVersion',
'InvalidWritableAccount'
'InvalidWritableAccount',
'WouldExceedMaxAccountDataCostLimit'
);

CREATE TYPE "TransactionError" AS (
Expand Down Expand Up @@ -114,7 +115,7 @@ CREATE TYPE "TransactionMessage" AS (
);

CREATE TYPE "TransactionMessageAddressTableLookup" AS (
account_key: BYTEA[],
account_key BYTEA,
writable_indexes SMALLINT[],
readonly_indexes SMALLINT[]
);
Expand Down