Class DmlStats

java.lang.Object
com.google.cloud.bigquery.DmlStats
All Implemented Interfaces:
Serializable

public abstract class DmlStats extends Object implements Serializable
Represents DML statistics information.
See Also:
  • Constructor Details

    • DmlStats

      public DmlStats()
  • Method Details

    • getDeletedRowCount

      @Nullable public abstract Long getDeletedRowCount()
      Returns number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements.
      Returns:
      value or null for none
    • getInsertedRowCount

      @Nullable public abstract Long getInsertedRowCount()
      Returns number of inserted Rows. Populated by DML INSERT and MERGE statements.
      Returns:
      value or null for none
    • getUpdatedRowCount

      @Nullable public abstract Long getUpdatedRowCount()
      Returns number of updated Rows. Populated by DML UPDATE and MERGE statements.
      Returns:
      value or null for none
    • toBuilder

      public abstract DmlStats.Builder toBuilder()
    • newBuilder

      public static DmlStats.Builder newBuilder()