org.neo4j.kernel.api.Statement to org.neo4j.kernel.api.KernelTransaction
No. of Instances - 60
No. of Commits - 13
No. of Projects - {'neo4j'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
- Cascading Type Change (Similar)
- Statement to KernelTransaction
- Statement to KernelTransaction
- Supplier<Statement> to Supplier<KernelTransaction>
- Rename Method invocation
- Rename Variable
- statement to ktx
- statement to ktx
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statementSupplier to transactionSupplier
- statementSupplier to transactionSupplier
- ctxSupplier to transactionSupplier
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to transaction
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to transaction
- statement to ktx
- statementContextBridge to txBridge
- statementContextBridge to txBridge
- statementContextBridge to txBridge
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- statement to ktx
- getStatement to getTransaction
- statementSupplier to ktxSupplier
- Add or Remove Method invocation
- transactionStatementContextBridge.get() to transactionStatementContextBridge.getKernelTransactionBoundToThisThread(true)
- statement to transaction.acquireStatement()
- statement to transaction.tokenRead()
- statement.readOperations() to transaction
- access.token(tokens.next()) to this.access.token(token)
- statement.readOperations() to transaction
- token.id() to access
- this.access.inUse(transaction,access) to tokens.next()
- this.access.token(token) to access.token(tokens.next())
- statementInNewTransaction(AnonymousContext.writeToken()) to newTransaction(AnonymousContext.writeToken())
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.tokenWriteOperations() to transaction.tokenWrite()
- statement.tokenWriteOperations() to transaction.tokenWrite()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.tokenWriteOperations() to transaction.tokenWrite()
- statementInNewTransaction(AnonymousContext.writeToken()) to newTransaction(AnonymousContext.writeToken())
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.tokenWriteOperations() to transaction.tokenWrite()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.tokenWriteOperations() to transaction.tokenWrite()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.tokenWriteOperations() to transaction.tokenWrite()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.readOperations() to transaction.tokenRead()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.tokenWriteOperations() to transaction.tokenWrite()
- statement.dataWriteOperations() to transaction.dataWrite()
- statement.tokenWriteOperations() to transaction.tokenWrite()
- statement.tokenWriteOperations() to transaction.tokenWrite()
- statement.tokenWriteOperations() to transaction.tokenWrite()
- statementContextSupplier.get() to statementContextSupplier.getKernelTransactionBoundToThisThread(true)
- statementContextSupplier.get() to statementContextSupplier.getKernelTransactionBoundToThisThread(true)
- statementContextSupplier.get() to statementContextSupplier.getKernelTransactionBoundToThisThread(true)
- get to getKernelTransactionBoundToThisThread
- get to getKernelTransactionBoundToThisThread
- statement.dataWriteOperations() to ktx.indexWrite()
- statement.dataWriteOperations() to transaction.indexWrite()
- statement.readOperations() to ktx
- statement.tokenWriteOperations() to ktx.tokenWrite()
- statement.tokenWriteOperations() to ktx.tokenWrite()
- statement.dataWriteOperations() to ktx.dataWrite()
- statement.dataWriteOperations() to ktx.dataWrite()
- statement.dataWriteOperations() to ktx.dataWrite()
- get to getKernelTransactionBoundToThisThread
- resolveDependency to getKernelTransactionBoundToThisThread
- Update Anonymous class
- { @Override protected T fetchNextOrNull(){ if (tokens.hasNext()) { return access.token(tokens.next()); } else { close(); return null; } } } to { @Override protected T fetchNextOrNull(){ while (tokens.hasNext()) { NamedToken token=tokens.next(); if (this.access.inUse(transaction,token.id())) { return this.access.token(token); } } close(); return null; } }
- { @Override protected T fetchNextOrNull(){ while (tokens.hasNext()) { Token token=tokens.next(); if (this.access.inUse(statement.readOperations(),token.id())) { return this.access.token(token); } } close(); return null; } } to { @Override protected T fetchNextOrNull(){ if (tokens.hasNext()) { return access.token(tokens.next()); } else { close(); return null; } } }
- Cascading Type Change (Different)
- TokenWriteOperations to TokenWrite
- SchemaWriteOperations to SchemaWrite
- StatementTokenNameLookup to SilentTokenNameLookup
- Update argument list (Method invocation)