SO I am using the datastax java driver session to build CQL query using preparedStatement and boundedStatement and use session to execute it. https://docs.datastax.com/en/developer/java-driver/3.0/manual/statements/prepared/
Is there is way to check the actual CQL query the builder build during unit test without run a embedded or cassandra node in the JVM?
I have check simulacron which works for simple statement but doesn't work for prepared statement as it doesn't maintain any internal state for the data and the schema of a table.
thanks