Skip to content
Merged
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
12 changes: 12 additions & 0 deletions core/src/main/java/com/scalar/db/common/error/CoreError.java
Original file line number Diff line number Diff line change
Expand Up @@ -949,6 +949,18 @@ public enum CoreError implements ScalarDbError {
Category.INTERNAL_ERROR, "0044", "The Upsert operation failed. Details: %s", "", ""),
JDBC_TRANSACTION_UPDATE_OPERATION_FAILED(
Category.INTERNAL_ERROR, "0045", "The Update operation failed. Details: %s", "", ""),
DATA_LOADER_ERROR_CRUD_EXCEPTION(
Category.INTERNAL_ERROR,
"0047",
"Something went wrong while trying to save the data. Details: %s",
"",
""),
DATA_LOADER_ERROR_SCAN(
Category.INTERNAL_ERROR,
"0048",
"Something went wrong while scanning. Are you sure you are running in the correct transaction mode? Details: %s",
"",
""),

//
// Errors for the unknown transaction status error category
Expand Down
Loading