public void partialTableWithIndexes() {
final AkibanInformationSchema inAIS = new AkibanInformationSchema();
Table stubCustomer = Table.create(inAIS, SCHEMA, "c", 1);
TInstance varchar32 = typesRegistry().getTypeClass("MCOMPAT", "VARCHAR").instance(32, true);
Column cFirstName = Column.create(stubCustomer, "first_name", 3, varchar32);
Column cLastName = Column.create(stubCustomer, "last_name", 4, varchar32);
TInstance int_null = typesRegistry().getTypeClass("MCOMPAT", "INT").instance(true);
Column cPayment = Column.create(stubCustomer, "payment", 6, int_null);
Index iName = TableIndex.create(inAIS, stubCustomer, "name", 2, false, false);
IndexColumn.create(iName, cLastName, 0, true, null);
IndexColumn.create(iName, cFirstName, 1, true, null);
Index iPayment = TableIndex.create(inAIS, stubCustomer, "payment", 3, false, false);
IndexColumn.create(iPayment, cPayment, 0, true, null);