tx-control-providers/jpa/tx-control-provider-jpa-xa-plugin-hibernate-5_0/src/main/java/org/apache/aries/tx/control/jpa/xa/plugin/hibernate/impl/HibernateTxControlPlatform.java [299:308]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			try {
				if(transacted) {
					LOGGER.debug("Performing a query in a nested transaction");
					return getTxControl().requiresNew(c);
				} else {
					LOGGER.debug("Suspending the current transaction to run a query");
					return getTxControl().notSupported(c);
				}
			} finally {
				LOGGER.debug("The previous transaction has been resumed");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tx-control-providers/jpa/tx-control-provider-jpa-xa-plugin-hibernate-5_2/src/main/java/org/apache/aries/tx/control/jpa/xa/plugin/hibernate/impl/Hibernate520TxControlPlatform.java [301:310]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			try {
				if(transacted) {
					LOGGER.debug("Performing a query in a nested transaction");
					return getTxControl().requiresNew(c);
				} else {
					LOGGER.debug("Suspending the current transaction to run a query");
					return getTxControl().notSupported(c);
				}
			} finally {
				LOGGER.debug("The previous transaction has been resumed");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



