xudong963 commented on a change in pull request #1987: URL: https://github.com/apache/arrow-datafusion/pull/1987#discussion_r825422620
########## File path: datafusion/src/execution/context.rs ########## @@ -1220,6 +1233,74 @@ impl FunctionRegistry for ExecutionContextState { } } +/// Task Context Properties +pub enum TaskProperties { + ///SessionConfig + SessionConfig(SessionConfig), + /// KV pairs + KVPairs(HashMap<String, String>), +} + +/// Task Execution Context +pub struct TaskContext { Review comment: +1. I'm a little confused, too. -- 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. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org