Skip to content

Commit 5e3af6a

Browse files
committed
update
1 parent 8ba1fbf commit 5e3af6a

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

fdb-relational-jdbc/src/test/java/com/apple/foundationdb/relational/jdbc/ParameterHelperTest.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,6 @@ void testBytes() throws SQLException {
102102
checkValue(value, ParameterHelper.ofBytes(value), Type.BYTES, Column::hasBinary, Column::getBinary, customAssert);
103103
}
104104

105-
// @Test
106-
// void testArray() throws SQLException {
107-
// final var value = new byte[]{1, 2, 3, 4};
108-
// final Function<Object, Object> transform = actual -> {
109-
// Assertions.assertInstanceOf(ByteString.class, actual);
110-
// return ((ByteString) actual).toByteArray();
111-
// };
112-
// checkValue(value, ParameterHelper.ofObject(value), Type.BYTES, Column::hasBinary, Column::getBinary, transform);
113-
// checkValue(value, ParameterHelper.ofBytes(value), Type.BYTES, Column::hasBinary, Column::getBinary, transform);
114-
// }
115-
116105
@Test
117106
void testGenericNull() throws SQLException {
118107
checkValue(null, ParameterHelper.ofObject(null), Type.NULL, Column::hasNull, Column::getNull, actual -> {

0 commit comments

Comments
 (0)