@Test
public void verifyReadingLogicalPartitionWildcard() throws IOException, ScnNotFoundException, InvalidConfigException, DatabusException, OffsetNotFoundException {
createBufMult();
PhysicalSourceStaticConfig pStatConf1 = convertToPhysicalSourceConfig(_configSource1).build();
PhysicalSourceStaticConfig pStatConf2 = convertToPhysicalSourceConfig(_configSource2).build();
PhysicalPartition pP = pStatConf1.getPhysicalPartition();
DbusEventBufferAppendable buf = _eventBufferMult.getDbusEventBufferAppendable(pP);
buf.startEvents();
byte [] schema = "abcdefghijklmnop".getBytes(Charset.defaultCharset());
assertTrue(buf.appendEvent(new DbusEventKey(1), (short)100, (short)0,
System.currentTimeMillis() * 1000000, (short)2,
schema, new byte[100], false, null));
assertTrue(buf.appendEvent(new DbusEventKey(1), (short)100, (short)1,
System.currentTimeMillis() * 1000000, (short)2,
schema, new byte[100], false, null));
buf.endEvents(100, null);
pP = pStatConf2.getPhysicalPartition();
buf = _eventBufferMult.getDbusEventBufferAppendable(pP);
buf.startEvents();
assertTrue(buf.appendEvent(new DbusEventKey(1), (short)101, (short)2,
System.currentTimeMillis() * 1000000, (short)2,