createTestTable(connectionPool);
insertTestData(connectionPool);
TableQuery q = new TableQuery("MYTABLE2", connectionPool);
q.setVersionColumn("VERSION");
SQLContainer myContainer = new SQLContainer(q);
// Uncommenting these works around the issue
// myContainer.addOrderBy(new OrderBy("PFX", true));
// myContainer.addOrderBy(new OrderBy("NUMERO", true));
myContainer.removeAllContainerFilters();
myContainer.addContainerFilter(new Equal("PFX", "C"));
VerticalLayout layout = new VerticalLayout();
mainWindow.setContent(layout);
final ComboBox myCombo = new ComboBox("MyCaption");