Class MySqlQueryExplainPlan
The explain plan for a given MySQL query. MySQL support within OCI Database Management service has been deprecated as of January 29, 2026.
Inherited Members
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class MySqlQueryExplainPlan
Properties
JsonExplain
Declaration
[Required(ErrorMessage = "JsonExplain is required.")]
[JsonProperty(PropertyName = "jsonExplain")]
public string JsonExplain { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The JSON format of the explain plan. |
Remarks
Required
JsonExplainVersion
Declaration
[Required(ErrorMessage = "JsonExplainVersion is required.")]
[JsonProperty(PropertyName = "jsonExplainVersion")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MySqlJsonExplainVersion? JsonExplainVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| MySqlJsonExplainVersion? | The version of the JSON format of the MySQL explain plan. |
Remarks
Required