@Test
public void buildSqlForUpdateWithMultipleIdColumns() throws Exception {
//given
final Object ANY = new Object();
final TableDescription table = new TableDescription("table", null, "num1", "num2");
//when
final String sql = sqlGenerator.update(table, ImmutableMap.of("x", ANY, "y", ANY, "z", ANY));
//then