Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
216 changes: 108 additions & 108 deletions python/pyspark/sql/connect/proto/base_pb2.py

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions python/pyspark/sql/connect/proto/base_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1586,6 +1586,7 @@ class ExecutePlanResponse(google.protobuf.message.Message):
ML_COMMAND_RESULT_FIELD_NUMBER: builtins.int
PIPELINE_EVENT_RESULT_FIELD_NUMBER: builtins.int
PIPELINE_COMMAND_RESULT_FIELD_NUMBER: builtins.int
PIPELINE_QUERY_FUNCTION_EXECUTION_SIGNAL_FIELD_NUMBER: builtins.int
EXTENSION_FIELD_NUMBER: builtins.int
METRICS_FIELD_NUMBER: builtins.int
OBSERVED_METRICS_FIELD_NUMBER: builtins.int
Expand Down Expand Up @@ -1661,6 +1662,13 @@ class ExecutePlanResponse(google.protobuf.message.Message):
) -> pyspark.sql.connect.proto.pipelines_pb2.PipelineCommandResult:
"""Pipeline command response"""
@property
def pipeline_query_function_execution_signal(
self,
) -> pyspark.sql.connect.proto.pipelines_pb2.PipelineQueryFunctionExecutionSignal:
"""A signal from the server to the client to execute the query function for a flow, and to
register its result with the server.
"""
@property
def extension(self) -> google.protobuf.any_pb2.Any:
"""Support arbitrary result objects."""
@property
Expand Down Expand Up @@ -1707,6 +1715,8 @@ class ExecutePlanResponse(google.protobuf.message.Message):
| None = ...,
pipeline_command_result: pyspark.sql.connect.proto.pipelines_pb2.PipelineCommandResult
| None = ...,
pipeline_query_function_execution_signal: pyspark.sql.connect.proto.pipelines_pb2.PipelineQueryFunctionExecutionSignal
| None = ...,
extension: google.protobuf.any_pb2.Any | None = ...,
metrics: global___ExecutePlanResponse.Metrics | None = ...,
observed_metrics: collections.abc.Iterable[global___ExecutePlanResponse.ObservedMetrics]
Expand Down Expand Up @@ -1736,6 +1746,8 @@ class ExecutePlanResponse(google.protobuf.message.Message):
b"pipeline_command_result",
"pipeline_event_result",
b"pipeline_event_result",
"pipeline_query_function_execution_signal",
b"pipeline_query_function_execution_signal",
"response_type",
b"response_type",
"result_complete",
Expand Down Expand Up @@ -1781,6 +1793,8 @@ class ExecutePlanResponse(google.protobuf.message.Message):
b"pipeline_command_result",
"pipeline_event_result",
b"pipeline_event_result",
"pipeline_query_function_execution_signal",
b"pipeline_query_function_execution_signal",
"response_id",
b"response_id",
"response_type",
Expand Down Expand Up @@ -1823,6 +1837,7 @@ class ExecutePlanResponse(google.protobuf.message.Message):
"ml_command_result",
"pipeline_event_result",
"pipeline_command_result",
"pipeline_query_function_execution_signal",
"extension",
]
| None
Expand Down
Loading