Skip to content

Commit b6cc900

Browse files
authored
fix row dispatcher tests (#24839)
1 parent 06224ed commit b6cc900

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
@@ -637,7 +637,7 @@ def test_stop_start(self, kikimr, client):
637637

638638
client.modify_query(
639639
query_id,
640-
"continue",
640+
"simple",
641641
sql1,
642642
type=fq.QueryContent.QueryType.STREAMING,
643643
state_load_mode=fq.StateLoadMode.EMPTY,
@@ -669,7 +669,7 @@ def test_stop_start2(self, kikimr, client):
669669
kikimr.compute_plane.wait_completed_checkpoints(query_id1, kikimr.compute_plane.get_completed_checkpoints(query_id1) + 2)
670670
stop_yds_query(client, query_id1)
671671

672-
client.modify_query(query_id1, "continue", sql1, type=fq.QueryContent.QueryType.STREAMING,
672+
client.modify_query(query_id1, "simple", sql1, type=fq.QueryContent.QueryType.STREAMING,
673673
state_load_mode=fq.StateLoadMode.EMPTY, streaming_disposition=StreamingDisposition.from_last_checkpoint())
674674
client.wait_query_status(query_id1, fq.QueryMeta.RUNNING)
675675
query_id2 = start_yds_query(kikimr, client, sql1)
@@ -680,9 +680,9 @@ def test_stop_start2(self, kikimr, client):
680680
stop_yds_query(client, query_id1)
681681
stop_yds_query(client, query_id2)
682682

683-
client.modify_query(query_id1, "continue", sql1, type=fq.QueryContent.QueryType.STREAMING,
683+
client.modify_query(query_id1, "simple", sql1, type=fq.QueryContent.QueryType.STREAMING,
684684
state_load_mode=fq.StateLoadMode.EMPTY, streaming_disposition=StreamingDisposition.from_last_checkpoint())
685-
client.modify_query(query_id2, "continue", sql1, type=fq.QueryContent.QueryType.STREAMING,
685+
client.modify_query(query_id2, "simple", sql1, type=fq.QueryContent.QueryType.STREAMING,
686686
state_load_mode=fq.StateLoadMode.EMPTY, streaming_disposition=StreamingDisposition.from_last_checkpoint())
687687
wait_actor_count(kikimr, "FQ_ROW_DISPATCHER_SESSION", 1)
688688

@@ -723,7 +723,7 @@ def test_stop_start_with_filter(self, kikimr, client):
723723

724724
client.modify_query(
725725
query_id,
726-
"continue",
726+
"simple",
727727
sql,
728728
type=fq.QueryContent.QueryType.STREAMING,
729729
state_load_mode=fq.StateLoadMode.EMPTY,
@@ -874,7 +874,7 @@ def test_3_sessions(self, kikimr, client):
874874

875875
client.modify_query(
876876
query_id1,
877-
"continue",
877+
"simple",
878878
sql1,
879879
type=fq.QueryContent.QueryType.STREAMING,
880880
state_load_mode=fq.StateLoadMode.EMPTY,
@@ -1048,7 +1048,7 @@ def test_group_by_hop_restart_query(self, kikimr, client):
10481048

10491049
client.modify_query(
10501050
query_id,
1051-
"continue",
1051+
"simple",
10521052
sql1,
10531053
type=fq.QueryContent.QueryType.STREAMING,
10541054
state_load_mode=fq.StateLoadMode.FROM_LAST_CHECKPOINT,

0 commit comments

Comments
 (0)