Class: Google::Apis::BigqueryV2::HighCardinalityJoin
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BigqueryV2::HighCardinalityJoin
 
- 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
- 
  
    
      #left_rows  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #output_rows  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #right_rows  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #step_index  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ HighCardinalityJoin 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of HighCardinalityJoin. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ HighCardinalityJoin
Returns a new instance of HighCardinalityJoin.
| 3691 3692 3693 | # File 'lib/google/apis/bigquery_v2/classes.rb', line 3691 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#left_rows ⇒ Fixnum
Output only. Count of left input rows.
Corresponds to the JSON property leftRows
| 3674 3675 3676 | # File 'lib/google/apis/bigquery_v2/classes.rb', line 3674 def left_rows @left_rows end | 
#output_rows ⇒ Fixnum
Output only. Count of the output rows.
Corresponds to the JSON property outputRows
| 3679 3680 3681 | # File 'lib/google/apis/bigquery_v2/classes.rb', line 3679 def output_rows @output_rows end | 
#right_rows ⇒ Fixnum
Output only. Count of right input rows.
Corresponds to the JSON property rightRows
| 3684 3685 3686 | # File 'lib/google/apis/bigquery_v2/classes.rb', line 3684 def right_rows @right_rows end | 
#step_index ⇒ Fixnum
Output only. The index of the join operator in the ExplainQueryStep lists.
Corresponds to the JSON property stepIndex
| 3689 3690 3691 | # File 'lib/google/apis/bigquery_v2/classes.rb', line 3689 def step_index @step_index end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3696 3697 3698 3699 3700 3701 | # File 'lib/google/apis/bigquery_v2/classes.rb', line 3696 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 |