> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# system.fail_points

> 利用可能なすべての フェイルポイント の種別と現在のステータスの一覧が含まれます。

<div id="description">
  ## 説明
</div>

サーバーに登録されている利用可能なすべてのフェイルポイントの一覧、それぞれの型、および現在有効かどうかを示します。

フェイルポイントは、`SYSTEM ENABLE FAILPOINT` ステートメントと `SYSTEM DISABLE FAILPOINT` ステートメントを使用して、実行時に有効化または無効化できます。

<div id="columns">
  ## カラム
</div>

* `name` ([String](/ja/reference/data-types/index)) — フェイルポイント の名前。
* `type` ([Enum8('once' = 0, 'regular' = 1, 'pauseable\_once' = 2, 'pauseable' = 3)](/ja/reference/data-types/index)) — フェイルポイント のタイプ。'once' は 1 回だけ発動して自動的に無効化され、'regular' は毎回発動し、'pauseable\_once' は 1 回だけ実行を停止させ、'pauseable' は再開されるまで毎回実行を停止させます。
* `enabled` ([UInt8](/ja/reference/data-types/index)) — フェイルポイント が現在有効 (1) か無効 (0) かを示します。

<div id="example">
  ## 例
</div>

```sql title="Query" theme={null}
SYSTEM ENABLE FAILPOINT replicated_merge_tree_insert_retry_pause;
SELECT * FROM system.fail_points WHERE enabled = 1
```

```text title="Response" theme={null}
┌─name──────────────────────────────────────┬─type────────────┬─enabled─┐
│ replicated_merge_tree_insert_retry_pause  │ pauseable_once  │       1 │
└───────────────────────────────────────────┴─────────────────┴─────────┘
```
