File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 55import xml .etree .ElementTree as ET
66from xml .dom import minidom
77
8+
89def add_properties_to_testcases (root , all_properties ):
910 # Iterate over every testsuite tag
1011 for testsuite in root .findall ('testsuite' ):
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22import random
33import ydb
4+ import pytest
45
56from ydb .tests .sql .lib .test_base import TpchTestBaseH1
67from ydb .tests .sql .lib .helpers import split_data_into_fixed_size_chunks
78
89
910class TestTpchBulkUpsertsOperations (TpchTestBaseH1 ):
1011
12+ @pytest .mark .test_case ("#14643" )
1113 def test_bulk_upsert_lineitem_with_overlapping_keys (self ):
1214 """
1315 Test bulk upsert into the lineitem table with overlapping keys.
@@ -72,6 +74,7 @@ def generate_lineitem_data(offset):
7274
7375 assert inserted_quantity == result_quantity , f"Mismatch in l_quantity for { key } "
7476
77+ @pytest .mark .test_case ("#14642" )
7578 def test_repeated_bulk_upsert_lineitem (self ):
7679 """
7780 Test that repeatedly upserting records in the lineitem table with the same keys results,
You can’t perform that action at this time.
0 commit comments