Skip to content

Commit

Permalink
basic pre-deploy validations
Browse files Browse the repository at this point in the history
  • Loading branch information
brennanjl committed Feb 14, 2025
1 parent 54c7186 commit e72d051
Show file tree
Hide file tree
Showing 10 changed files with 1,556 additions and 557 deletions.
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

0 comments on commit e72d051

Please sign in to comment.