feat: add window execution to runtime

This commit is contained in:
a.tolmachev
2026-04-06 10:38:23 +03:00
parent 7e4f3d142e
commit 8204a59dac
10 changed files with 708 additions and 27 deletions
+3
View File
@@ -846,7 +846,10 @@ fn runtime_error_code(error: &RuntimeError) -> &'static str {
RuntimeError::GrpcAdapter(_) => "adapter_execution_error",
RuntimeError::RestAdapter(_) => "adapter_execution_error",
RuntimeError::UnsupportedProtocol { .. } => "unsupported_protocol",
RuntimeError::MissingStreamingConfig { .. } => "streaming_config_error",
RuntimeError::UnsupportedExecutionMode { .. } => "streaming_mode_error",
RuntimeError::InvalidPreparedRequest { .. } => "runtime_error",
RuntimeError::InvalidStreamingPayload { .. } => "streaming_payload_error",
}
}