use of com.airbnb.spinaltap.mysql.mutation.schema.ColumnMetadata in project SpinalTap by airbnb.
the class MysqlUpdateMutationTest method testAsColumnValues.
@Test
public void testAsColumnValues() throws Exception {
Table table = new Table(1, "table_name", "db_name", ImmutableList.of(new ColumnMetadata("id", ColumnDataType.LONGLONG, false, 0)), ImmutableList.of());
Row row = new Row(table, ImmutableMap.of("id", new Column(table.getColumns().get("id"), 2)));
assertEquals(ImmutableMap.of("id", 2), MysqlUpdateMutation.asColumnValues(row));
}
use of com.airbnb.spinaltap.mysql.mutation.schema.ColumnMetadata in project SpinalTap by airbnb.
the class RowTest method testSinglePrimaryKey.
@Test
public void testSinglePrimaryKey() throws Exception {
Table table = new Table(TABLE_ID, TABLE_NAME, DB_NAME, ImmutableList.of(new ColumnMetadata(ID_COLUMN, ColumnDataType.LONGLONG, true, 0), new ColumnMetadata(NAME_COLUMN, ColumnDataType.VARCHAR, false, 1)), ImmutableList.of(ID_COLUMN));
Row row = new Row(table, ImmutableMap.of(ID_COLUMN, new Column(table.getColumns().get(ID_COLUMN), 1), NAME_COLUMN, new Column(table.getColumns().get(NAME_COLUMN), "Bob")));
assertEquals("1", row.getPrimaryKeyValue());
}
use of com.airbnb.spinaltap.mysql.mutation.schema.ColumnMetadata in project SpinalTap by airbnb.
the class RowTest method testCompositePrimaryKey.
@Test
public void testCompositePrimaryKey() throws Exception {
Table table = new Table(TABLE_ID, TABLE_NAME, DB_NAME, ImmutableList.of(new ColumnMetadata(ID_COLUMN, ColumnDataType.LONGLONG, true, 0), new ColumnMetadata(NAME_COLUMN, ColumnDataType.VARCHAR, true, 1)), ImmutableList.of(ID_COLUMN, NAME_COLUMN));
Row row = new Row(table, ImmutableMap.of(ID_COLUMN, new Column(table.getColumns().get(ID_COLUMN), 1), NAME_COLUMN, new Column(table.getColumns().get(NAME_COLUMN), "Bob")));
assertEquals("1Bob", row.getPrimaryKeyValue());
}
use of com.airbnb.spinaltap.mysql.mutation.schema.ColumnMetadata in project SpinalTap by airbnb.
the class RowTest method testNullPrimaryKey.
@Test
public void testNullPrimaryKey() throws Exception {
Table table = new Table(TABLE_ID, TABLE_NAME, DB_NAME, ImmutableList.of(new ColumnMetadata(ID_COLUMN, ColumnDataType.LONGLONG, true, 0)), ImmutableList.of(ID_COLUMN));
Row row = new Row(table, ImmutableMap.of(ID_COLUMN, new Column(table.getColumns().get(ID_COLUMN), null)));
assertEquals("null", row.getPrimaryKeyValue());
}
use of com.airbnb.spinaltap.mysql.mutation.schema.ColumnMetadata in project SpinalTap by airbnb.
the class DeleteMutationMapper method mapEvent.
@Override
protected List<MysqlDeleteMutation> mapEvent(Table table, DeleteEvent event) {
Collection<ColumnMetadata> cols = table.getColumns().values();
List<MysqlDeleteMutation> mutations = new ArrayList<>();
List<Serializable[]> rows = event.getRows();
for (int position = 0; position < rows.size(); position++) {
mutations.add(new MysqlDeleteMutation(createMetadata(table, event, position), new Row(table, zip(rows.get(position), cols))));
}
return mutations;
}
Aggregations