Commit 364d77de authored by MishaDemianenko's avatar MishaDemianenko
Browse files

Merge 3.3 into 3.4

Showing with 1 addition and 2 deletions
+1 -2
......@@ -280,8 +280,7 @@ public class BatchInserterImpl implements BatchInserter, IndexConfigStoreProvide
schemaStore = neoStores.getSchemaStore();
labelTokenStore = neoStores.getLabelTokenStore();
List<Token> indexes = propertyKeyTokenStore.getTokens( 10000 );
propertyKeyTokens = new BatchTokenHolder( indexes );
propertyKeyTokens = new BatchTokenHolder( propertyKeyTokenStore.getTokens( Integer.MAX_VALUE ) );
labelTokens = new BatchTokenHolder( labelTokenStore.getTokens( Integer.MAX_VALUE ) );
List<RelationshipTypeToken> types = relationshipTypeTokenStore.getTokens( Integer.MAX_VALUE );
relationshipTypeTokens = new BatchTokenHolder( types );
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment