Below is the diff from 0.94.6 to 0.94.7:
@@ -475,7 +509,7 @@
#if !defined(ENABLE_TRANSACTIONS) && !defined(DISABLE_TRANSACTIONS)
strcat(v, " AUTO-XA");
#else
- if (fTransaction)
+ if (eTransaction == P_ENABLED)
strcat(v, " TRANSACTIONAL");
else
strcat(v, " NON-TRANSACTIONAL");
Shouldn't that be "T_ENABLED" instead of "P_ENABLED"?