2023-05-11 15:25:29 +01:00
|
|
|
# nimbus-eth1
|
aristo: fork support via layers/txframes (#2960)
* aristo: fork support via layers/txframes
This change reorganises how the database is accessed: instead holding a
"current frame" in the database object, a dag of frames is created based
on the "base frame" held in `AristoDbRef` and all database access
happens through this frame, which can be thought of as a consistent
point-in-time snapshot of the database based on a particular fork of the
chain.
In the code, "frame", "transaction" and "layer" is used to denote more
or less the same thing: a dag of stacked changes backed by the on-disk
database.
Although this is not a requirement, in practice each frame holds the
change set of a single block - as such, the frame and its ancestors
leading up to the on-disk state represents the state of the database
after that block has been applied.
"committing" means merging the changes to its parent frame so that the
difference between them is lost and only the cumulative changes remain -
this facility enables frames to be combined arbitrarily wherever they
are in the dag.
In particular, it becomes possible to consolidate a set of changes near
the base of the dag and commit those to disk without having to re-do the
in-memory frames built on top of them - this is useful for "flattening"
a set of changes during a base update and sending those to storage
without having to perform a block replay on top.
Looking at abstractions, a side effect of this change is that the KVT
and Aristo are brought closer together by considering them to be part of
the "same" atomic transaction set - the way the code gets organised,
applying a block and saving it to the kvt happens in the same "logical"
frame - therefore, discarding the frame discards both the aristo and kvt
changes at the same time - likewise, they are persisted to disk together
- this makes reasoning about the database somewhat easier but has the
downside of increased memory usage, something that perhaps will need
addressing in the future.
Because the code reasons more strictly about frames and the state of the
persisted database, it also makes it more visible where ForkedChain
should be used and where it is still missing - in particular, frames
represent a single branch of history while forkedchain manages multiple
parallel forks - user-facing services such as the RPC should use the
latter, ie until it has been finalized, a getBlock request should
consider all forks and not just the blocks in the canonical head branch.
Another advantage of this approach is that `AristoDbRef` conceptually
becomes more simple - removing its tracking of the "current" transaction
stack simplifies reasoning about what can go wrong since this state now
has to be passed around in the form of `AristoTxRef` - as such, many of
the tests and facilities in the code that were dealing with "stack
inconsistency" are now structurally prevented from happening. The test
suite will need significant refactoring after this change.
Once this change has been merged, there are several follow-ups to do:
* there's no mechanism for keeping frames up to date as they get
committed or rolled back - TODO
* naming is confused - many names for the same thing for legacy reason
* forkedchain support is still missing in lots of code
* clean up redundant logic based on previous designs - in particular the
debug and introspection code no longer makes sense
* the way change sets are stored will probably need revisiting - because
it's a stack of changes where each frame must be interrogated to find an
on-disk value, with a base distance of 128 we'll at minimum have to
perform 128 frame lookups for *every* database interaction - regardless,
the "dag-like" nature will stay
* dispose and commit are poorly defined and perhaps redundant - in
theory, one could simply let the GC collect abandoned frames etc, though
it's likely an explicit mechanism will remain useful, so they stay for
now
More about the changes:
* `AristoDbRef` gains a `txRef` field (todo: rename) that "more or less"
corresponds to the old `balancer` field
* `AristoDbRef.stack` is gone - instead, there's a chain of
`AristoTxRef` objects that hold their respective "layer" which has the
actual changes
* No more reasoning about "top" and "stack" - instead, each
`AristoTxRef` can be a "head" that "more or less" corresponds to the old
single-history `top` notion and its stack
* `level` still represents "distance to base" - it's computed from the
parent chain instead of being stored
* one has to be careful not to use frames where forkedchain was intended
- layers are only for a single branch of history!
* fix layer vtop after rollback
* engine fix
* Fix test_txpool
* Fix test_rpc
* Fix copyright year
* fix simulator
* Fix copyright year
* Fix copyright year
* Fix tracer
* Fix infinite recursion bug
* Remove aristo and kvt empty files
* Fic copyright year
* Fix fc chain_kvt
* ForkedChain refactoring
* Fix merge master conflict
* Fix copyright year
* Reparent txFrame
* Fix test
* Fix txFrame reparent again
* Cleanup and fix test
* UpdateBase bugfix and fix test
* Fixe newPayload bug discovered by hive
* Fix engine api fcu
* Clean up call template, chain_kvt, andn txguid
* Fix copyright year
* work around base block loading issue
* Add test
* Fix updateHead bug
* Fix updateBase bug
* Change func commitBase to proc commitBase
* Touch up and fix debug mode crash
---------
Co-authored-by: jangko <jangko128@gmail.com>
2025-02-06 08:04:50 +01:00
|
|
|
# Copyright (c) 2023-2025 Status Research & Development GmbH
|
2023-05-11 15:25:29 +01:00
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
|
|
|
type
|
|
|
|
AristoError* = enum
|
|
|
|
NothingSerious = 0
|
2024-06-19 12:40:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Cache checker `checkCache()`
|
|
|
|
CheckAnyVidDeadStorageRoot
|
|
|
|
CheckAnyVidSharedStorageRoot
|
|
|
|
CheckAnyVtxEmptyKeyMissing
|
|
|
|
CheckAnyVtxEmptyKeyExpected
|
|
|
|
CheckAnyVtxEmptyKeyMismatch
|
|
|
|
CheckAnyVtxBranchLinksMissing
|
|
|
|
CheckAnyVtxLockWithoutKey
|
|
|
|
CheckAnyVTopUnset
|
|
|
|
|
|
|
|
CheckBeCacheGarbledVTop
|
|
|
|
CheckBeCacheKeyDangling
|
|
|
|
CheckBeCacheKeyNonEmpty
|
|
|
|
CheckBeGarbledVTop
|
|
|
|
CheckBeVtxBranchLinksMissing
|
|
|
|
CheckBeVtxInvalid
|
|
|
|
CheckBeVtxMissing
|
|
|
|
|
|
|
|
CheckStkKeyStrayZeroEntry
|
|
|
|
CheckStkVtxKeyMismatch
|
|
|
|
|
|
|
|
CheckRlxVtxIncomplete
|
|
|
|
CheckRlxVtxKeyMissing
|
|
|
|
CheckRlxVtxKeyMismatch
|
|
|
|
|
|
|
|
|
|
|
|
# De-serialiser from `blobify.nim`
|
No ext update (#2494)
* Imported/rebase from `no-ext`, PR #2485
Store extension nodes together with the branch
Extension nodes must be followed by a branch - as such, it makes sense
to store the two together both in the database and in memory:
* fewer reads, writes and updates to traverse the tree
* simpler logic for maintaining the node structure
* less space used, both memory and storage, because there are fewer
nodes overall
There is also a downside: hashes can no longer be cached for an
extension - instead, only the extension+branch hash can be cached - this
seems like a fine tradeoff since computing it should be fast.
TODO: fix commented code
* Fix merge functions and `toNode()`
* Update `merkleSignCommit()` prototype
why:
Result is always a 32bit hash
* Update short Merkle hash key generation
details:
Ethereum reference MPTs use Keccak hashes as node links if the size of
an RLP encoded node is at least 32 bytes. Otherwise, the RLP encoded
node value is used as a pseudo node link (rather than a hash.) This is
specified in the yellow paper, appendix D.
Different to the `Aristo` implementation, the reference MPT would not
store such a node on the key-value database. Rather the RLP encoded node value is stored instead of a node link in a parent node
is stored as a node link on the parent database.
Only for the root hash, the top level node is always referred to by the
hash.
* Fix/update `Extension` sections
why:
Were commented out after removal of a dedicated `Extension` type which
left the system disfunctional.
* Clean up unused error codes
* Update unit tests
* Update docu
---------
Co-authored-by: Jacek Sieka <jacek@status.im>
2024-07-16 19:47:59 +00:00
|
|
|
Deblob256LenUnsupported
|
|
|
|
Deblob64LenUnsupported
|
|
|
|
DeblobBranchGotLeafPrefix
|
2023-06-20 14:26:25 +01:00
|
|
|
DeblobBranchTooShort
|
No ext update (#2494)
* Imported/rebase from `no-ext`, PR #2485
Store extension nodes together with the branch
Extension nodes must be followed by a branch - as such, it makes sense
to store the two together both in the database and in memory:
* fewer reads, writes and updates to traverse the tree
* simpler logic for maintaining the node structure
* less space used, both memory and storage, because there are fewer
nodes overall
There is also a downside: hashes can no longer be cached for an
extension - instead, only the extension+branch hash can be cached - this
seems like a fine tradeoff since computing it should be fast.
TODO: fix commented code
* Fix merge functions and `toNode()`
* Update `merkleSignCommit()` prototype
why:
Result is always a 32bit hash
* Update short Merkle hash key generation
details:
Ethereum reference MPTs use Keccak hashes as node links if the size of
an RLP encoded node is at least 32 bytes. Otherwise, the RLP encoded
node value is used as a pseudo node link (rather than a hash.) This is
specified in the yellow paper, appendix D.
Different to the `Aristo` implementation, the reference MPT would not
store such a node on the key-value database. Rather the RLP encoded node value is stored instead of a node link in a parent node
is stored as a node link on the parent database.
Only for the root hash, the top level node is always referred to by the
hash.
* Fix/update `Extension` sections
why:
Were commented out after removal of a dedicated `Extension` type which
left the system disfunctional.
* Clean up unused error codes
* Update unit tests
* Update docu
---------
Co-authored-by: Jacek Sieka <jacek@status.im>
2024-07-16 19:47:59 +00:00
|
|
|
DeblobCodeLenUnsupported
|
2023-06-20 14:26:25 +01:00
|
|
|
DeblobExtSizeGarbled
|
|
|
|
DeblobLeafGotExtPrefix
|
No ext update (#2494)
* Imported/rebase from `no-ext`, PR #2485
Store extension nodes together with the branch
Extension nodes must be followed by a branch - as such, it makes sense
to store the two together both in the database and in memory:
* fewer reads, writes and updates to traverse the tree
* simpler logic for maintaining the node structure
* less space used, both memory and storage, because there are fewer
nodes overall
There is also a downside: hashes can no longer be cached for an
extension - instead, only the extension+branch hash can be cached - this
seems like a fine tradeoff since computing it should be fast.
TODO: fix commented code
* Fix merge functions and `toNode()`
* Update `merkleSignCommit()` prototype
why:
Result is always a 32bit hash
* Update short Merkle hash key generation
details:
Ethereum reference MPTs use Keccak hashes as node links if the size of
an RLP encoded node is at least 32 bytes. Otherwise, the RLP encoded
node value is used as a pseudo node link (rather than a hash.) This is
specified in the yellow paper, appendix D.
Different to the `Aristo` implementation, the reference MPT would not
store such a node on the key-value database. Rather the RLP encoded node value is stored instead of a node link in a parent node
is stored as a node link on the parent database.
Only for the root hash, the top level node is always referred to by the
hash.
* Fix/update `Extension` sections
why:
Were commented out after removal of a dedicated `Extension` type which
left the system disfunctional.
* Clean up unused error codes
* Update unit tests
* Update docu
---------
Co-authored-by: Jacek Sieka <jacek@status.im>
2024-07-16 19:47:59 +00:00
|
|
|
DeblobLeafSizeGarbled
|
2024-07-04 15:46:52 +02:00
|
|
|
DeblobRVidLenUnsupported
|
No ext update (#2494)
* Imported/rebase from `no-ext`, PR #2485
Store extension nodes together with the branch
Extension nodes must be followed by a branch - as such, it makes sense
to store the two together both in the database and in memory:
* fewer reads, writes and updates to traverse the tree
* simpler logic for maintaining the node structure
* less space used, both memory and storage, because there are fewer
nodes overall
There is also a downside: hashes can no longer be cached for an
extension - instead, only the extension+branch hash can be cached - this
seems like a fine tradeoff since computing it should be fast.
TODO: fix commented code
* Fix merge functions and `toNode()`
* Update `merkleSignCommit()` prototype
why:
Result is always a 32bit hash
* Update short Merkle hash key generation
details:
Ethereum reference MPTs use Keccak hashes as node links if the size of
an RLP encoded node is at least 32 bytes. Otherwise, the RLP encoded
node value is used as a pseudo node link (rather than a hash.) This is
specified in the yellow paper, appendix D.
Different to the `Aristo` implementation, the reference MPT would not
store such a node on the key-value database. Rather the RLP encoded node value is stored instead of a node link in a parent node
is stored as a node link on the parent database.
Only for the root hash, the top level node is always referred to by the
hash.
* Fix/update `Extension` sections
why:
Were commented out after removal of a dedicated `Extension` type which
left the system disfunctional.
* Clean up unused error codes
* Update unit tests
* Update docu
---------
Co-authored-by: Jacek Sieka <jacek@status.im>
2024-07-16 19:47:59 +00:00
|
|
|
DeblobUnknown
|
|
|
|
DeblobVtxTooShort
|
|
|
|
DeblobWrongSize
|
|
|
|
DeblobWrongType
|
2023-05-11 15:25:29 +01:00
|
|
|
|
2024-06-19 12:40:00 +00:00
|
|
|
|
|
|
|
# Deletion of vertex paths, `deleteXxx()`
|
|
|
|
DelAccRootNotAccepted
|
|
|
|
DelBranchExpexted
|
|
|
|
DelBranchWithoutRefs
|
|
|
|
DelDanglingStoTrie
|
|
|
|
DelLeafExpexted
|
|
|
|
DelPathNotFound
|
|
|
|
DelRootVidMissing
|
|
|
|
DelStoAccMissing
|
|
|
|
DelStoRootMissing
|
|
|
|
DelStoRootNotAccepted
|
|
|
|
DelVidStaleVtx
|
|
|
|
|
|
|
|
# Fetch functions from `aristo_fetch.nim`
|
2024-06-27 09:01:26 +00:00
|
|
|
FetchAccInaccessible
|
|
|
|
FetchAccPathWithoutLeaf
|
|
|
|
FetchAccRootNotAccepted
|
2024-06-19 12:40:00 +00:00
|
|
|
FetchLeafKeyInvalid
|
|
|
|
FetchPathInvalid
|
2024-06-27 09:01:26 +00:00
|
|
|
FetchPathNotFound
|
2024-09-11 20:27:42 +00:00
|
|
|
FetchPathStoRootMissing
|
2024-06-19 12:40:00 +00:00
|
|
|
FetchRootVidMissing
|
|
|
|
FetchStoRootNotAccepted
|
|
|
|
|
|
|
|
|
|
|
|
# Get functions from `aristo_get.nim`
|
|
|
|
GetFilNotFound
|
|
|
|
GetFqsNotFound
|
|
|
|
GetKeyNotFound
|
|
|
|
GetKeyUpdateNeeded
|
|
|
|
GetLstNotFound
|
|
|
|
GetTuvNotFound
|
|
|
|
GetVtxNotFound
|
|
|
|
|
|
|
|
|
2023-06-09 12:17:37 +01:00
|
|
|
# Path function `hikeUp()`
|
2024-02-01 21:27:48 +00:00
|
|
|
HikeBranchMissingEdge
|
2023-06-22 12:13:24 +01:00
|
|
|
HikeBranchTailEmpty
|
2024-05-03 17:38:17 +00:00
|
|
|
HikeDanglingEdge
|
2024-02-01 21:27:48 +00:00
|
|
|
HikeEmptyPath
|
Core db update storage root management for sub tries (#1964)
* Aristo: Re-phrase `LayerDelta` and `LayerFinal` as object references
why:
Avoids copying in some cases
* Fix copyright header
* Aristo: Verify `leafTie.root` function argument for `merge()` proc
why:
Zero root will lead to inconsistent DB entry
* Aristo: Update failure condition for hash labels compiler `hashify()`
why:
Node need not be rejected as long as links are on the schedule. In
that case, `redo[]` is to become `wff.base[]` at a later stage.
This amends an earlier fix, part of #1952 by also testing against
the target nodes of the `wff.base[]` sets.
* Aristo: Add storage root glue record to `hashify()` schedule
why:
An account leaf node might refer to a non-resolvable storage root ID.
Storage root node chains will end up at the storage root. So the link
`storage-root->account-leaf` needs an extra item in the schedule.
* Aristo: fix error code returned by `fetchPayload()`
details:
Final error code is implied by the error code form the `hikeUp()`
function.
* CoreDb: Discard `createOk` argument in API `getRoot()` function
why:
Not needed for the legacy DB. For the `Arsto` DB, a lazy approach is
implemented where a stprage root node is created on-the-fly.
* CoreDb: Prevent `$$` logging in some cases
why:
Logging the function `$$` is not useful when it is used for internal
use, i.e. retrieving an an error text for logging.
* CoreDb: Add `tryHashFn()` to API for pretty printing
why:
Pretty printing must not change the hashification status for the
`Aristo` DB. So there is an independent API wrapper for getting the
node hash which never updated the hashes.
* CoreDb: Discard `update` argument in API `hash()` function
why:
When calling the API function `hash()`, the latest state is always
wanted. For a version that uses the current state as-is without checking,
the function `tryHash()` was added to the backend.
* CoreDb: Update opaque vertex ID objects for the `Aristo` backend
why:
For `Aristo`, vID objects encapsulate a numeric `VertexID`
referencing a vertex (rather than a node hash as used on the
legacy backend.) For storage sub-tries, there might be no initial
vertex known when the descriptor is created. So opaque vertex ID
objects are supported without a valid `VertexID` which will be
initalised on-the-fly when the first item is merged.
* CoreDb: Add pretty printer for opaque vertex ID objects
* Cosmetics, printing profiling data
* CoreDb: Fix segfault in `Aristo` backend when creating MPT descriptor
why:
Missing initialisation error
* CoreDb: Allow MPT to inherit shared context on `Aristo` backend
why:
Creates descriptors with different storage roots for the same
shared `Aristo` DB descriptor.
* Cosmetics, update diagnostic message items for `Aristo` backend
* Fix Copyright year
2024-01-11 19:11:38 +00:00
|
|
|
HikeLeafUnexpected
|
2024-02-01 21:27:48 +00:00
|
|
|
HikeNoLegs
|
|
|
|
HikeRootMissing
|
2023-05-30 12:47:47 +01:00
|
|
|
|
2023-05-11 15:25:29 +01:00
|
|
|
|
2023-05-30 12:47:47 +01:00
|
|
|
# Merge leaf `merge()`
|
2024-07-11 13:26:46 +02:00
|
|
|
MergeHikeFailed # Ooops, internal error
|
2024-06-18 11:14:02 +00:00
|
|
|
MergeAccRootNotAccepted
|
|
|
|
MergeStoRootNotAccepted
|
2024-09-19 10:39:06 +02:00
|
|
|
MergeNoAction
|
2024-06-18 11:14:02 +00:00
|
|
|
MergeRootVidMissing
|
2024-06-27 09:01:26 +00:00
|
|
|
MergeStoAccMissing
|
2024-02-08 16:32:16 +00:00
|
|
|
|
2024-04-26 13:43:52 +00:00
|
|
|
|
2023-06-02 11:04:29 +01:00
|
|
|
# Neighbour vertex, tree traversal `nearbyRight()` and `nearbyLeft()`
|
|
|
|
NearbyBeyondRange
|
|
|
|
NearbyBranchError
|
|
|
|
NearbyDanglingLink
|
|
|
|
NearbyEmptyHike
|
|
|
|
NearbyFailed
|
|
|
|
NearbyLeafExpected
|
|
|
|
NearbyNestingTooDeep
|
|
|
|
NearbyPathTailUnexpected
|
|
|
|
NearbyUnexpectedVtx
|
2023-06-30 23:22:33 +01:00
|
|
|
NearbyVidInvalid
|
2023-06-02 11:04:29 +01:00
|
|
|
|
2023-12-19 12:39:23 +00:00
|
|
|
|
2024-06-19 12:40:00 +00:00
|
|
|
# Path/nibble/key conversions in `aisto_path.nim`
|
|
|
|
PathExpected64Nibbles
|
|
|
|
PathAtMost64Nibbles
|
|
|
|
PathExpectedLeaf
|
2023-06-20 14:26:25 +01:00
|
|
|
|
2023-10-27 22:36:51 +01:00
|
|
|
|
2024-07-29 20:15:17 +00:00
|
|
|
# Part/proof node errors
|
|
|
|
PartArgNotGenericRoot
|
2024-08-06 11:29:26 +00:00
|
|
|
PartArgNotInCore
|
2024-08-01 10:41:20 +00:00
|
|
|
PartArgRootAlreadyOnDatabase
|
2024-08-06 11:29:26 +00:00
|
|
|
PartArgRootAlreadyUsed
|
2024-07-29 20:15:17 +00:00
|
|
|
PartChkChangedKeyNotInKeyTab
|
|
|
|
PartChkChangedVtxMissing
|
|
|
|
PartChkCoreKeyLookupFailed
|
|
|
|
PartChkCoreRVidLookupFailed
|
|
|
|
PartChkCoreVidLookupFailed
|
|
|
|
PartChkCoreVtxMissing
|
|
|
|
PartChkKeyTabCoreKeyMissing
|
|
|
|
PartChkKeyTabRootMissing
|
|
|
|
PartChkPerimeterVtxMustNotExist
|
|
|
|
PartChkVidKeyTabKeyMismatch
|
|
|
|
PartChkVidKeyTabLengthsDiffer
|
|
|
|
PartChkVidTabCoreRootMissing
|
|
|
|
PartChkVidTabVidMissing
|
2024-08-06 11:29:26 +00:00
|
|
|
PartChnBranchPathExhausted
|
2024-09-11 09:39:45 +00:00
|
|
|
PartChnBranchVoidEdge
|
2024-08-06 11:29:26 +00:00
|
|
|
PartChnExtPfxMismatch
|
|
|
|
PartChnLeafPathMismatch
|
|
|
|
PartChnNodeConvError
|
2024-07-29 20:15:17 +00:00
|
|
|
PartCtxNotAvailable
|
|
|
|
PartCtxStaleDescriptor
|
|
|
|
PartExtVtxExistsAlready
|
|
|
|
PartExtVtxHasVanished
|
|
|
|
PartExtVtxWasModified
|
|
|
|
PartGarbledExtsInProofs
|
|
|
|
PartMissingUplinkInternalError
|
|
|
|
PartNoMoreRootVidsLeft
|
|
|
|
PartPayloadAccRejected
|
|
|
|
PartPayloadAccRequired
|
|
|
|
PartRlp1r4ListEntries
|
|
|
|
PartRlp2Or17ListEntries
|
|
|
|
PartRlpBlobExpected
|
|
|
|
PartRlpBranchHashKeyExpected
|
|
|
|
PartRlpEmptyBlobExpected
|
|
|
|
PartRlpExtHashKeyExpected
|
|
|
|
PartRlpNodeException
|
|
|
|
PartRlpNonEmptyBlobExpected
|
|
|
|
PartRlpPayloadException
|
|
|
|
PartRootKeysDontMatch
|
|
|
|
PartRootVidsDontMatch
|
2024-08-06 11:29:26 +00:00
|
|
|
PartTrkEmptyPath
|
|
|
|
PartTrkFollowUpKeyMismatch
|
|
|
|
PartTrkGarbledNode
|
|
|
|
PartTrkLeafPfxMismatch
|
|
|
|
PartTrkLinkExpected
|
|
|
|
PartTrkPayloadMismatch
|
|
|
|
PartTrkRlpError
|
2024-07-29 20:15:17 +00:00
|
|
|
PartVtxSlotWasModified
|
|
|
|
PartVtxSlotWasNotModified
|
|
|
|
|
2023-06-20 14:26:25 +01:00
|
|
|
# RocksDB backend
|
|
|
|
RdbBeCantCreateTmpDir
|
2024-06-10 12:04:22 +00:00
|
|
|
RdbBeDriverDelAdmError
|
|
|
|
RdbBeDriverDelKeyError
|
|
|
|
RdbBeDriverDelVtxError
|
|
|
|
RdbBeDriverGetAdmError
|
|
|
|
RdbBeDriverGetKeyError
|
|
|
|
RdbBeDriverGetVtxError
|
2024-04-16 20:39:11 +00:00
|
|
|
RdbBeDriverGuestError
|
2024-06-10 12:04:22 +00:00
|
|
|
RdbBeDriverPutAdmError
|
|
|
|
RdbBeDriverPutKeyError
|
2024-06-13 18:15:11 +00:00
|
|
|
RdbBeDriverPutVtxError
|
2024-04-16 20:39:11 +00:00
|
|
|
RdbBeDriverWriteError
|
2024-06-13 18:15:11 +00:00
|
|
|
RdbBeTypeUnsupported
|
|
|
|
RdbBeWrSessionUnfinished
|
|
|
|
RdbBeWrTriggerActiveAlready
|
|
|
|
RdbBeWrTriggerNilFn
|
|
|
|
RdbGuestInstanceAborted
|
2023-11-08 12:18:32 +00:00
|
|
|
RdbHashKeyExpected
|
2023-06-09 12:17:37 +01:00
|
|
|
|
2024-06-19 12:40:00 +00:00
|
|
|
|
2023-05-30 12:47:47 +01:00
|
|
|
# End
|