Class: Google::Cloud::Bigquery::Job::ScriptStatistics
- Inherits:
-
Object
- Object
- Google::Cloud::Bigquery::Job::ScriptStatistics
- Defined in:
- lib/google/cloud/bigquery/job.rb
Overview
Represents statistics for a child job of a script.
Lifecycle collapse
-
#evaluation_kind ⇒ String
readonly
Indicates the type of child job.
-
#stack_frames ⇒ Array<Google::Cloud::Bigquery::Job::ScriptStackFrame>
readonly
Stack trace where the current evaluation happened.
Instance Attribute Details
#evaluation_kind ⇒ String (readonly)
Indicates the type of child job. Possible values include STATEMENT
and
EXPRESSION
.
615 616 617 |
# File 'lib/google/cloud/bigquery/job.rb', line 615 def evaluation_kind @evaluation_kind end |
#stack_frames ⇒ Array<Google::Cloud::Bigquery::Job::ScriptStackFrame> (readonly)
Stack trace where the current evaluation happened. Shows line/column/procedure name of each frame on the stack at the point where the current evaluation happened. The leaf frame is first, the primary script is last.
615 616 617 |
# File 'lib/google/cloud/bigquery/job.rb', line 615 def stack_frames @stack_frames end |