Class: Google::Apis::BigqueryV2::HighCardinalityJoin

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb

Overview

High cardinality join detailed information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ HighCardinalityJoin

Returns a new instance of HighCardinalityJoin.



3712
3713
3714
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3712

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#left_rowsFixnum

Output only. Count of left input rows. Corresponds to the JSON property leftRows

Returns:

  • (Fixnum)


3695
3696
3697
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3695

def left_rows
  @left_rows
end

#output_rowsFixnum

Output only. Count of the output rows. Corresponds to the JSON property outputRows

Returns:

  • (Fixnum)


3700
3701
3702
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3700

def output_rows
  @output_rows
end

#right_rowsFixnum

Output only. Count of right input rows. Corresponds to the JSON property rightRows

Returns:

  • (Fixnum)


3705
3706
3707
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3705

def right_rows
  @right_rows
end

#step_indexFixnum

Output only. The index of the join operator in the ExplainQueryStep lists. Corresponds to the JSON property stepIndex

Returns:

  • (Fixnum)


3710
3711
3712
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3710

def step_index
  @step_index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3717
3718
3719
3720
3721
3722
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3717

def update!(**args)
  @left_rows = args[:left_rows] if args.key?(:left_rows)
  @output_rows = args[:output_rows] if args.key?(:output_rows)
  @right_rows = args[:right_rows] if args.key?(:right_rows)
  @step_index = args[:step_index] if args.key?(:step_index)
end