This function returns prepared XACT information :param sid: server id :return:
(sid=None, did=None)
| 470 | @pga_login_required |
| 471 | @check_precondition |
| 472 | def prepared(sid=None, did=None): |
| 473 | """ |
| 474 | This function returns prepared XACT information |
| 475 | :param sid: server id |
| 476 | :return: |
| 477 | """ |
| 478 | return get_data(sid, did, 'prepared.sql') |
| 479 | |
| 480 | |
| 481 | @blueprint.route('/config/<int:sid>', endpoint='config') |
nothing calls this directly
no test coverage detected