File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -581,7 +581,7 @@ def do_query():
581
581
)
582
582
583
583
callback (
584
- QueryCompleteEvent (
584
+ QueryFinishedEvent (
585
585
billing_project = project ,
586
586
location = query_results .location ,
587
587
query_id = query_results .query_id ,
@@ -674,7 +674,7 @@ def _wait_or_cancel(
674
674
timeout = wait_timeout ,
675
675
)
676
676
callback (
677
- QueryCompleteEvent (
677
+ QueryFinishedEvent (
678
678
billing_project = job .project ,
679
679
location = query_results .location ,
680
680
query_id = query_results .query_id ,
@@ -697,7 +697,7 @@ def _wait_or_cancel(
697
697
698
698
699
699
@dataclasses .dataclass (frozen = True )
700
- class QueryCompleteEvent :
700
+ class QueryFinishedEvent :
701
701
"""Query finished successfully."""
702
702
703
703
billing_project : str
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ def test_query_and_wait_bigframes_callback(client):
82
82
)
83
83
),
84
84
mock .call (
85
- _job_helpers .QueryCompleteEvent (
85
+ _job_helpers .QueryFinishedEvent (
86
86
billing_project = PROJECT ,
87
87
location = LOCATION ,
88
88
query_id = "abcdefg" ,
@@ -135,7 +135,7 @@ def test_query_and_wait_bigframes_with_job_callback(client):
135
135
)
136
136
),
137
137
mock .call (
138
- _job_helpers .QueryCompleteEvent (
138
+ _job_helpers .QueryFinishedEvent (
139
139
billing_project = PROJECT ,
140
140
location = LOCATION ,
141
141
query_id = "abcdefg" ,
@@ -193,7 +193,7 @@ def test_query_and_wait_bigframes_with_query_retry_callbacks(client):
193
193
)
194
194
),
195
195
mock .call (
196
- _job_helpers .QueryCompleteEvent (
196
+ _job_helpers .QueryFinishedEvent (
197
197
billing_project = PROJECT ,
198
198
location = LOCATION ,
199
199
query_id = mock .ANY ,
You can’t perform that action at this time.
0 commit comments