View Source GoogleApi.Spanner.V1.Model.ChildLink (google_api_spanner v0.38.0)

Metadata associated with a parent-child relationship appearing in a PlanNode.

Attributes

  • childIndex (type: integer(), default: nil) - The node to which the link points.
  • type (type: String.t, default: nil) - The type of the link. For example, in Hash Joins this could be used to distinguish between the build child and the probe child, or in the case of the child being an output variable, to represent the tag associated with the output variable.
  • variable (type: String.t, default: nil) - Only present if the child node is SCALAR and corresponds to an output variable of the parent node. The field carries the name of the output variable. For example, a TableScan operator that reads rows from a table will have child links to the SCALAR nodes representing the output variables created for each column that is read by the operator. The corresponding variable fields will be set to the variable names assigned to the columns.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.Spanner.V1.Model.ChildLink{
  childIndex: integer() | nil,
  type: String.t() | nil,
  variable: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.