msathis commented on a change in pull request #288: URL: https://github.com/apache/arrow-datafusion/pull/288#discussion_r632392077
########## File path: datafusion/src/execution/context.rs ########## @@ -740,6 +748,15 @@ impl ExecutionConfig { } } +/// Holds per-execution properties and data (such as starting timestamps, etc). +/// An instance of this struct is created each time a [`LogicalPlan`] is prepared for +/// execution (optimized). If the same plan is optimized multiple times, a new +/// `ExecutionProps` is created each time. +#[derive(Clone)] +pub struct ExecutionProps { + pub(crate) query_execution_start_time: Option<DateTime<Utc>>, Review comment: Done 👍 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org