Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2981,6 +2981,8 @@ void testInsertAll() throws IOException {
builder2.put("FloatField", 1.2);
builder2.put("GeographyField", "POINT(-122.350220 47.649154)");
builder2.put("NumericField", new BigDecimal("123456789.123456789"));
// Set insertId on all rows to enable automatic retries by the client library on transient
// errors.
InsertAllRequest request =
InsertAllRequest.newBuilder(tableInfo.getTableId())
.addRow(UUID.randomUUID().toString(), builder1.build())
Expand Down Expand Up @@ -3040,6 +3042,8 @@ void testInsertAllWithSuffix() throws InterruptedException {
builder2.put("FloatField", 1.2);
builder2.put("GeographyField", "POINT(-122.350220 47.649154)");
builder2.put("NumericField", new BigDecimal("123456789.123456789"));
// Set insertId on all rows to enable automatic retries by the client library on transient
// errors.
InsertAllRequest request =
InsertAllRequest.newBuilder(tableInfo.getTableId())
.addRow(UUID.randomUUID().toString(), builder1.build())
Expand Down Expand Up @@ -3114,6 +3118,8 @@ void testInsertAllWithErrors() {
builder3.put("IntegerArrayField", ImmutableList.of(0, 1));
builder3.put("BooleanField", false);
builder3.put("BytesField", BYTES_BASE64);
// Set insertId on all rows to enable automatic retries by the client library on transient
// errors.
InsertAllRequest request =
InsertAllRequest.newBuilder(tableInfo.getTableId())
.addRow(UUID.randomUUID().toString(), builder1.build())
Expand Down
Loading