Tolerate null UUID attribute values

This commit is contained in:
Jon Chambers
2021-11-09 11:00:27 -05:00
committed by GitHub
parent 3398955c1a
commit bae0196bcf
2 changed files with 7 additions and 1 deletions

View File

@@ -57,4 +57,10 @@ public class AttributeValuesTest {
AttributeValue av = AttributeValues.fromByteBuffer(byteBuffer.flip());
assertArrayEquals(new byte[]{0, 0, 0, 0, 0, 0, 0, 123}, AttributeValues.getByteArray(Map.of("foo", av), "foo", null));
}
@Test
void testNullUuid() {
final Map<String, AttributeValue> item = Map.of("key", AttributeValue.builder().nul(true).build());
assertNull(AttributeValues.getUUID(item, "key", null));
}
}