pub struct LoadQueryStatistics {
pub bad_records: Option<i64>,
pub bytes_transferred: Option<i64>,
pub input_file_bytes: Option<i64>,
pub input_files: Option<i64>,
pub output_bytes: Option<i64>,
pub output_rows: Option<i64>,
}Expand description
Statistics for a LOAD query.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bad_records: Option<i64>Output only. The number of bad records encountered while processing a LOAD query. Note that if the job has failed because of more bad records encountered than the maximum allowed in the load job configuration, then this number can be less than the total number of bad records present in the input data.
bytes_transferred: Option<i64>Output only. This field is deprecated. The number of bytes of source data copied over the network for a LOAD query. transferred_bytes has the canonical value for physical transferred bytes, which is used for BigQuery Omni billing.
input_file_bytes: Option<i64>Output only. Number of bytes of source data in a LOAD query.
input_files: Option<i64>Output only. Number of source files in a LOAD query.
output_bytes: Option<i64>Output only. Size of the loaded data in bytes. Note that while a LOAD query is in the running state, this value may change.
output_rows: Option<i64>Output only. Number of rows imported in a LOAD query. Note that while a LOAD query is in the running state, this value may change.
Trait Implementations§
Source§impl Clone for LoadQueryStatistics
impl Clone for LoadQueryStatistics
Source§fn clone(&self) -> LoadQueryStatistics
fn clone(&self) -> LoadQueryStatistics
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more