Skip to content
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

basic pre-deploy validations #1379

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
10 changes: 6 additions & 4 deletions node/engine/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ var (
ErrInvalidNull = errors.New("invalid null value")
ErrArrayTooSmall = errors.New("array too small")
ErrExtensionInvocation = errors.New("extension invocation error")
ErrInvalidRecordUsage = errors.New("invalid record usage")

// Errors that signal the existence or non-existence of an object.
ErrUnknownAction = errors.New("unknown action")
ErrUnknownTable = errors.New("unknown table")
ErrNamespaceNotFound = errors.New("namespace not found")
ErrNamespaceExists = errors.New("namespace already exists")
ErrUnknownAction = errors.New("unknown action")
ErrUnknownTable = errors.New("unknown table")
ErrNamespaceNotFound = errors.New("namespace not found")
ErrNamespaceExists = errors.New("namespace already exists")
ErrUnknownRecordField = errors.New("unknown record field")

// Errors that likely are not the result of a user error, but instead are informing
// the user of an operation that is not allowed in order to maintain the integrity of
Expand Down
Loading