public void CreateAndDropHiLoTable(ITransformationProvider database)
 {
     database.CreateHiLoTable();
     Assert.IsTrue(database.TableExists(TransformationProviderHiLoExtensions.HI_LO_TABLE_NAME));
     database.RemoveHiLoTable();
     Assert.IsFalse(database.TableExists(TransformationProviderHiLoExtensions.HI_LO_TABLE_NAME));
 }