Sanne Grinovero commented on an issue
Hibernate ORM / Epic HHH-8000
Apply bytecode introspection to provide an execution context to the query planning engine
Using the same tricks of annotation processors as we applied for Infinispan as proof of concept (project Jokre), we can dynamically replace the invocation of - for example - createQuery() with a trap method which is going to trigger an inspection of the bytecode of the invoker.

The inspection will result in two different actions:
* replace the trap metho...