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 5
5
import xml .etree .ElementTree as ET
6
6
from xml .dom import minidom
7
7
8
+
8
9
def add_properties_to_testcases (root , all_properties ):
9
10
# Iterate over every testsuite tag
10
11
for testsuite in root .findall ('testsuite' ):
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
import random
3
3
import ydb
4
+ import pytest
4
5
5
6
from ydb .tests .sql .lib .test_base import TpchTestBaseH1
6
7
from ydb .tests .sql .lib .helpers import split_data_into_fixed_size_chunks
7
8
8
9
9
10
class TestTpchBulkUpsertsOperations (TpchTestBaseH1 ):
10
11
12
+ @pytest .mark .test_case ("#14643" )
11
13
def test_bulk_upsert_lineitem_with_overlapping_keys (self ):
12
14
"""
13
15
Test bulk upsert into the lineitem table with overlapping keys.
@@ -72,6 +74,7 @@ def generate_lineitem_data(offset):
72
74
73
75
assert inserted_quantity == result_quantity , f"Mismatch in l_quantity for { key } "
74
76
77
+ @pytest .mark .test_case ("#14642" )
75
78
def test_repeated_bulk_upsert_lineitem (self ):
76
79
"""
77
80
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