public void testUpdateNullRows() {
HandlerProxy proxy = factory.createHandlerProxy();
List<ColumnSchema> columns = Lists.newArrayList();
List<IndexSchema> indices = Lists.newArrayList();
columns.add(ColumnSchema.builder(TestConstants.COLUMN1, ColumnType.LONG).build());
TableSchema schema = new TableSchema(columns, indices);
String tableName = AdapterType.HBASE.getName() + "/t1";
int iterations = 10;
proxy.createTable(tableName, schema.serialize(), 0);
proxy.openTable(tableName);
Row row = new Row(Maps.<String, ByteBuffer>newHashMap(), TestConstants.ZERO_UUID);
List<Row> rows = new ArrayList<Row>();