File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
io/core/src/main/java/org/neo4j/gds/core/io/db Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 4444import org .neo4j .kernel .impl .index .schema .DefaultIndexProvidersAccess ;
4545import org .neo4j .kernel .impl .index .schema .IndexImporterFactoryImpl ;
4646import org .neo4j .kernel .impl .scheduler .JobSchedulerFactory ;
47+ import org .neo4j .kernel .impl .transaction .log .files .LogTailMetadataFactoryImpl ;
4748import org .neo4j .kernel .impl .transaction .log .files .TransactionLogInitializer ;
4849import org .neo4j .kernel .lifecycle .LifeSupport ;
4950import org .neo4j .logging .internal .LogService ;
@@ -250,6 +251,7 @@ private BatchImporter instantiateBatchImporter(
250251 return storageEngineFactory .batchImporter (
251252 databaseLayout ,
252253 this .fileSystem ,
254+ false , // overrideExistingDatabase
253255 PageCacheTracer .NULL ,
254256 importConfig ,
255257 logService ,
@@ -264,6 +266,8 @@ private BatchImporter instantiateBatchImporter(
264266 new IndexImporterFactoryImpl (),
265267 EmptyMemoryTracker .INSTANCE ,
266268 CursorContextFactory .NULL_CONTEXT_FACTORY ,
269+ 1 ,
270+ new LogTailMetadataFactoryImpl (this .fileSystem ),
267271 indexProvidersAccess
268272 );
269273 }
You can’t perform that action at this time.
0 commit comments