Class: Google::Apis::BigqueryV2::PruningStats

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

The column metadata index pruning statistics.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PruningStats

Returns a new instance of PruningStats.



8182
8183
8184
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8182

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

Instance Attribute Details

#post_cmeta_pruning_parallel_input_countFixnum

The number of parallel inputs matched. Corresponds to the JSON property postCmetaPruningParallelInputCount

Returns:

  • (Fixnum)


8170
8171
8172
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8170

def post_cmeta_pruning_parallel_input_count
  @post_cmeta_pruning_parallel_input_count
end

#post_cmeta_pruning_partition_countFixnum

The number of partitions matched. Corresponds to the JSON property postCmetaPruningPartitionCount

Returns:

  • (Fixnum)


8175
8176
8177
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8175

def post_cmeta_pruning_partition_count
  @post_cmeta_pruning_partition_count
end

#pre_cmeta_pruning_parallel_input_countFixnum

The number of parallel inputs scanned. Corresponds to the JSON property preCmetaPruningParallelInputCount

Returns:

  • (Fixnum)


8180
8181
8182
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8180

def pre_cmeta_pruning_parallel_input_count
  @pre_cmeta_pruning_parallel_input_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8187
8188
8189
8190
8191
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8187

def update!(**args)
  @post_cmeta_pruning_parallel_input_count = args[:post_cmeta_pruning_parallel_input_count] if args.key?(:post_cmeta_pruning_parallel_input_count)
  @post_cmeta_pruning_partition_count = args[:post_cmeta_pruning_partition_count] if args.key?(:post_cmeta_pruning_partition_count)
  @pre_cmeta_pruning_parallel_input_count = args[:pre_cmeta_pruning_parallel_input_count] if args.key?(:pre_cmeta_pruning_parallel_input_count)
end