Class MySqlQueryExplainPlan
The explain plan for a given MySQL query.
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 MySQL Explain. |
Remarks
Required