// Schema operations @Override public ListenableFuture<List<String>> getDatabases() { return new MockListenableFuture<>(Collections.singletonList(vtepSchema.getName())); }
private DatabaseSchema getDbSchema(String dbName) { return (vtepSchema.getName().equals(dbName)) ? vtepSchema : null; }