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
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ The specified consistency level is not supported. Consistency level: %s
**メッセージ**

```markdown
Cannot encode a Text value that contains '\u0000'
Cannot encode a Text value that contains '\\u0000'
```

### `DB-CORE-10081`
Expand Down Expand Up @@ -800,7 +800,7 @@ A %s condition is not allowed on Delete operations
**メッセージ**

```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 @@ -1123,6 +1123,54 @@ The storage does not support mutations across multiple namespaces. Storage: %s;
Mutations across multiple storages are not allowed. Mutations: %s
```

### `DB-CORE-10216`

**メッセージ**

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

### `DB-CORE-10258`

**メッセージ**

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

### `DB-CORE-10259`

**メッセージ**

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

### `DB-CORE-10260`

**メッセージ**

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

### `DB-CORE-10261`

**メッセージ**

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

### `DB-CORE-10262`

**メッセージ**

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

## `DB-CORE-2xxxx` ステータスコード

以下は、同時実行エラーカテゴリのステータスコードとメッセージです。
Expand Down Expand Up @@ -1712,7 +1760,7 @@ The Update operation failed. Details: %s
**メッセージ**

```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 @@ -1752,7 +1800,7 @@ Recovering records failed. Details: %s
**メッセージ**

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

## `DB-CORE-4xxxx` ステータスコード
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,14 @@ Transaction size must be greater than 0
Number of max threads must be greater than 0
```

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

**メッセージ**

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

## `DB-DATA-LOADER-3xxxx` ステータスコード

以下は、内部エラーカテゴリのステータスコードとメッセージです。
Expand Down