usecrate::bridge::envelope::PhysicalPlan;usecrate::types::{TenantId, VShardId};/// A physical execution task ready for dispatch to the Data Plane.
////// The planner produces these after converting a DataFusion logical plan
/// into a concrete physical operation targeting a specific vShard.
#[derive(Debug)]pubstructPhysicalTask{/// Target tenant.
pubtenant_id: TenantId,
/// Target vShard (determines which Data Plane core handles this).
pubvshard_id: VShardId,
/// The physical operation to execute.
pubplan: PhysicalPlan,
}