Skip to content

Update RDB$TRANSACTION_STATE values #217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 3, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ It contains only one record.
|RDB$SYSTEM_FLAG
|SMALLINT
|Flag:

`0` - user-defined +
`1` or higher - system-defined

Expand All @@ -600,7 +600,7 @@ It contains only one record.
== `RDB$FIELDS`

RDB$FIELDS stores definitions of columns and domains, both system and custom.
This is where the detailed data attributes are stored for all columns.
This is where the detailed data attributes are stored for all columns.

[NOTE]
====
Expand Down Expand Up @@ -664,7 +664,7 @@ For the `CHAR` and `VARCHAR` data types, the column stores the maximum number of
|RDB$FIELD_TYPE
|SMALLINT
|Data type code for the column:

`7` - `SMALLINT` +
`8` - `INTEGER` +
`10` - `FLOAT` +
Expand Down Expand Up @@ -700,7 +700,7 @@ Codes for `DECIMAL` and `NUMERIC` are the same as for the integer types used for
`8` - debug information (for PSQL) +
`< 0` - user-defined

Specifies for the CHAR data type:
Specifies for the CHAR data type:

`0` - untyped data +
`1` - fixed binary data
Expand Down Expand Up @@ -1265,7 +1265,7 @@ Used in conjunction with `RDB$RELATION_NAME` (see next).
|RDB$SYSTEM_FLAG
|SMALLINT
|Flag:

`0` - user-defined +
`1` or greater - system-defined
`6` - internal sequence for identity column
Expand Down Expand Up @@ -1697,7 +1697,7 @@ If the name starts with the prefix "`RDB$`", it is the name of the domain automa
|RDB$PARAMETER_MECHANISM
|SMALLINT
|Flag: indicates how this parameter is passed:

`0` - by value +
`1` - by reference +
`2` - by descriptor +
Expand Down Expand Up @@ -2195,9 +2195,9 @@ For example, this identifier is used in the `time_zone` field of the `ISC_TIMEST
|SMALLINT
|Transaction state:

`0` - in limbo +
`1` - committed +
`2` - rolled back
`1` - in limbo +
`2` - committed +
`3` - rolled back

|RDB$TIMESTAMP
|TIMESTAMP WITH TIME ZONE
Expand Down