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
54 changes: 51 additions & 3 deletions versioned_docs/version-3.16/scalardb-core-status-codes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ A %s condition is not allowed on Delete operations
**Message**

```markdown
The condition is not allowed to target transaction metadata columns. Column: %s
The condition is not allowed to target transaction metadata columns. Table: %s; Column: %s
```

### `DB-CORE-10101`
Expand Down Expand Up @@ -1119,6 +1119,54 @@ The storage does not support mutations across multiple namespaces. Storage: %s;
Mutations across multiple storages are not allowed. Mutations: %s
```

### `DB-CORE-10216`

**Message**

```markdown
The namespace has non-ScalarDB tables and cannot be dropped. Namespace: %s; Tables in the namespace: %s
```

### `DB-CORE-10258`

**Message**

```markdown
Specifying transaction metadata columns in the projection is not allowed. Table: %s; Column: %s
```

### `DB-CORE-10259`

**Message**

```markdown
Specifying transaction metadata columns in the ordering is not allowed. Table: %s; Column: %s
```

### `DB-CORE-10260`

**Message**

```markdown
Get operations by using an index is not allowed in the SERIALIZABLE isolation level
```

### `DB-CORE-10261`

**Message**

```markdown
Scan operations by using an index is not allowed in the SERIALIZABLE isolation level
```

### `DB-CORE-10262`

**Message**

```markdown
Conditions on indexed columns in cross-partition scan operations are not allowed in the SERIALIZABLE isolation level
```

## `DB-CORE-2xxxx` status codes

The following are status codes and messages for the concurrency error category.
Expand Down Expand Up @@ -1708,7 +1756,7 @@ The Update operation failed. Details: %s
**Message**

```markdown
Handling the before-preparation snapshot hook failed. Details: %s
Handling the before-preparation hook failed. Details: %s
```

### `DB-CORE-30054`
Expand Down Expand Up @@ -1748,7 +1796,7 @@ Recovering records failed. Details: %s
**Message**

```markdown
Committing records failed
Committing records failed. Details: %s
```

## `DB-CORE-4xxxx` status codes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,14 @@ Transaction size must be greater than 0
Number of max threads must be greater than 0
```

### `DB-DATA-LOADER-10057`

**Message**

```markdown
Cannot specify both deprecated option '%s' and new option '%s'. Please use only '%s'
```

## `DB-DATA-LOADER-3xxxx` status codes

The following are status codes and messages for the internal error category.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ This page provides a list of error codes in ScalarDB Schema Loader.

## Error code classes and descriptions

| Class | Description |
|:-------------------------|:---------------------------------------|
| `DB-SCHEMA-LOADER-1xxxx` | Errors for the user error category. |
| Class | Description |
|:-------------------------|:-----------------------------------|
| `DB-SCHEMA-LOADER-1xxxx` | Errors for the user error category |

## `DB-SCHEMA-LOADER-1xxxx` status codes

Expand Down