class Google::Apis::BigqueryV2::DmlStatistics

Attributes

deleted_row_count[RW]

Number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements. Corresponds to the JSON property `deletedRowCount` @return [Fixnum]

inserted_row_count[RW]

Number of inserted Rows. Populated by DML INSERT and MERGE statements. Corresponds to the JSON property `insertedRowCount` @return [Fixnum]

updated_row_count[RW]

Number of updated Rows. Populated by DML UPDATE and MERGE statements. Corresponds to the JSON property `updatedRowCount` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 1961
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigquery_v2/classes.rb, line 1966
def update!(**args)
  @deleted_row_count = args[:deleted_row_count] if args.key?(:deleted_row_count)
  @inserted_row_count = args[:inserted_row_count] if args.key?(:inserted_row_count)
  @updated_row_count = args[:updated_row_count] if args.key?(:updated_row_count)
end