Bruce Momjian <[EMAIL PROTECTED]> writes: > libpq has PQtransactionStatus, though I wonder why we don't have this > visible via a read-only GUC variable to make it easier for other languages.
Because it'd be useless --- the only way to interrogate it would be via SHOW or some other SQL command, which would have the effect of changing your transaction status, at least with client libraries that implement autocommit. Not to mention that the SHOW itself would fail if you're in a failed transaction. You have to have an out-of-band mechanism for checking xact status. Thus PQtransactionStatus. AFAIK there are already equivalent APIs in other popular libraries. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match