Id id = new Id(ImmutableList.of(new ColumnIdent("id")), ImmutableList.<BytesRef>of(), new ColumnIdent("id"));
}
@Test
public void testMultiplePrimaryKey() throws Exception {
Id id = new Id(ImmutableList.of(new ColumnIdent("id"), new ColumnIdent("name")), ImmutableList.of(new BytesRef("1"), new BytesRef("foo")), null);
assertThat(id.values().size(), is(2));
assertEquals(ImmutableList.of(new BytesRef("1"), new BytesRef("foo")), id.values());
Id id1 = Id.fromString(id.stringValue());