Class: Google::Apis::BigqueryV2::PruningStats
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::PruningStats
- 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
-
#post_cmeta_pruning_parallel_input_count ⇒ Fixnum
The number of parallel inputs matched.
-
#post_cmeta_pruning_partition_count ⇒ Fixnum
The number of partitions matched.
-
#pre_cmeta_pruning_parallel_input_count ⇒ Fixnum
The number of parallel inputs scanned.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PruningStats
constructor
A new instance of PruningStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PruningStats
Returns a new instance of PruningStats.
7778 7779 7780 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7778 def initialize(**args) update!(**args) end |
Instance Attribute Details
#post_cmeta_pruning_parallel_input_count ⇒ Fixnum
The number of parallel inputs matched.
Corresponds to the JSON property postCmetaPruningParallelInputCount
7766 7767 7768 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7766 def @post_cmeta_pruning_parallel_input_count end |
#post_cmeta_pruning_partition_count ⇒ Fixnum
The number of partitions matched.
Corresponds to the JSON property postCmetaPruningPartitionCount
7771 7772 7773 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7771 def @post_cmeta_pruning_partition_count end |
#pre_cmeta_pruning_parallel_input_count ⇒ Fixnum
The number of parallel inputs scanned.
Corresponds to the JSON property preCmetaPruningParallelInputCount
7776 7777 7778 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7776 def @pre_cmeta_pruning_parallel_input_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7783 7784 7785 7786 7787 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7783 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 |