public List<String> getPhysicalSiteNames(String dbname) {
   ArrayList<String> buf = new ArrayList<String>();
   for (int i = 0; i < nsites; i++) {
     buf.add(SchemaTest.buildDBName(siteKern, i, dbname));
   }
   return buf;
 }
Example #2
0
 @BeforeClass
 public static void setup() throws Throwable {
   TestCatalogHelper.createTestCatalog(PETest.class, 4);
   bootHost = BootstrapHost.startServices(PETest.class);
   SchemaTest.setTemplateModeOptional();
 }