Skip to content

Commit 4156be0

Browse files
authored
Merge 3a955eb into bc2bf72
2 parents bc2bf72 + 3a955eb commit 4156be0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

ydb/tests/fq/yds/test_row_dispatcher.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ def test_read_raw_format_with_row_dispatcher(self, kikimr, client):
8989
)
9090
connections = client.list_connections(fq.Acl.Visibility.PRIVATE).result.connection
9191
assert len(connections) == 1
92-
assert connections[0].content.setting.data_streams.shared_reading == True
92+
assert connections[0].content.setting.data_streams.shared_reading
9393

94-
self.init_topics("test_read_raw_format_without_row_dispatcher", create_output=False)
94+
self.init_topics("test_read_raw_format_with_row_dispatcher", create_output=False)
9595
output_topic = "pq_test_pq_read_write_output"
9696
create_stream(output_topic, partitions_count=1)
9797
create_read_rule(output_topic, self.consumer_name)
@@ -106,7 +106,7 @@ def test_read_raw_format_with_row_dispatcher(self, kikimr, client):
106106
assert self.read_stream(len(data), topic_path=output_topic) == data
107107
wait_actor_count(kikimr, "FQ_ROW_DISPATCHER_SESSION", 1)
108108
stop_yds_query(client, query_id)
109-
109+
110110
sql2 = Rf'''INSERT INTO {YDS_CONNECTION}.`{output_topic}`
111111
SELECT * FROM {YDS_CONNECTION}.`{self.input_topic}` WITH (format=raw, SCHEMA (data String NOT NULL))
112112
WHERE data != "romashka";'''
@@ -290,7 +290,7 @@ def test_filter_missing_fields(self, kikimr, client):
290290
client.create_yds_connection(
291291
YDS_CONNECTION, os.getenv("YDB_DATABASE"), os.getenv("YDB_ENDPOINT"), shared_reading=True
292292
)
293-
self.init_topics("test_filter")
293+
self.init_topics("test_filter_missing_fields")
294294

295295
sql = Rf'''
296296
INSERT INTO {YDS_CONNECTION}.`{self.output_topic}`
@@ -525,9 +525,9 @@ def test_stop_start_with_filter(self, kikimr, client):
525525
client.create_yds_connection(
526526
YDS_CONNECTION, os.getenv("YDB_DATABASE"), os.getenv("YDB_ENDPOINT"), shared_reading=True
527527
)
528-
self.init_topics("test_stop_start", create_output=False)
528+
self.init_topics("test_stop_start_with_filter", create_output=False)
529529

530-
output_topic = "test_stop_start"
530+
output_topic = "test_stop_start_with_filter"
531531
create_stream(output_topic, partitions_count=1)
532532
create_read_rule(output_topic, self.consumer_name)
533533

@@ -717,7 +717,7 @@ def test_many_partitions(self, kikimr, client):
717717
client.create_yds_connection(
718718
YDS_CONNECTION, os.getenv("YDB_DATABASE"), os.getenv("YDB_ENDPOINT"), shared_reading=True
719719
)
720-
self.init_topics("test_simple_not_null", partitions_count=4)
720+
self.init_topics("test_many_partitions", partitions_count=4)
721721

722722
sql = Rf'''
723723
INSERT INTO {YDS_CONNECTION}.`{self.output_topic}`

0 commit comments

Comments
 (0)