Package com.google.cloud.bigquery
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:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDmlStats.Builder
-
Constructor Summary
Constructors Constructor Description DmlStats()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract LonggetDeletedRowCount()Returns number of deleted Rows.abstract LonggetInsertedRowCount()Returns number of inserted Rows.abstract LonggetUpdatedRowCount()Returns number of updated Rows.static DmlStats.BuildernewBuilder()abstract DmlStats.BuildertoBuilder()
-
-
-
Method Detail
-
getDeletedRowCount
@Nullable public abstract Long getDeletedRowCount()
Returns number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements.- Returns:
- value or
nullfor none
-
getInsertedRowCount
@Nullable public abstract Long getInsertedRowCount()
Returns number of inserted Rows. Populated by DML INSERT and MERGE statements.- Returns:
- value or
nullfor none
-
getUpdatedRowCount
@Nullable public abstract Long getUpdatedRowCount()
Returns number of updated Rows. Populated by DML UPDATE and MERGE statements.- Returns:
- value or
nullfor none
-
toBuilder
public abstract DmlStats.Builder toBuilder()
-
newBuilder
public static DmlStats.Builder newBuilder()
-
-