system.fail_points
Contains a list of all available failpoints registered in the server, along with their type and whether they are currently enabled.
Failpoints can be enabled and disabled at runtime using the SYSTEM ENABLE FAILPOINT and SYSTEM DISABLE FAILPOINT statements.
Columns
name(String) — Name of the failpoint.type(Enum8) — Type of the failpoint. Possible values:'once'— Triggers a single time and then auto-disables.'regular'— Triggers every time the failpoint is hit.'pauseable_once'— Blocks execution once until explicitly resumed.'pauseable'— Blocks execution every time the failpoint is hit until explicitly resumed.
enabled(UInt8) — Whether the failpoint is currently enabled.1means enabled,0means disabled.