From ff6a53f9b2592bd4149d8b65f58c35765863f86e Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Sat, 13 May 2023 20:30:44 +0300 Subject: [PATCH] Added/Updated tests\bugs\core_5602_test.py: added 'perf_issue_tag' string to the output related to performance problem. This text will serve as 'tag' for unambiguous detection of performance problem and set appropriate mark to the test outcome. --- tests/bugs/core_5602_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bugs/core_5602_test.py b/tests/bugs/core_5602_test.py index a1c0be9e..cd2898ff 100644 --- a/tests/bugs/core_5602_test.py +++ b/tests/bugs/core_5602_test.py @@ -91,7 +91,7 @@ def test_1(act: Action, capsys): if del_constr_to_commit_median < DEL_2_COMMIT_MAX_RATIO: print(msg_del_success) else: - print('ALTER DOMAIN DROP CONSTRAINT perfomed too slow. Ratios of DML to COMMIT time:') + print('/* perf_issue_tag */ ALTER DOMAIN DROP CONSTRAINT perfomed too slow. Ratios of DML to COMMIT time:') for p in del_constraint_to_commit_ratios: print('%12.4f' % p) print('Median value: %12.4f - GREATER than threshold: %12.4f' % (del_constr_to_commit_median,DEL_2_COMMIT_MAX_RATIO))