138139140141142143144
return base16().encode(value.getBytes(UTF_8)); } private static SqlVarbinary sqlVarbinary(String value) { return new SqlVarbinary(value.getBytes(UTF_8)); }
12861287128812891290129112921293129412951296
if (index != null) { if ((rowNumber % 23) == 0) { assertNull(row.getField(index)); } else { assertEquals(row.getField(index), new SqlVarbinary("test binary".getBytes(UTF_8))); } } // DATE index = columnIndex.get("t_date");