mingmwang commented on code in PR #3855:
URL: https://github.com/apache/arrow-datafusion/pull/3855#discussion_r998923548
##########
datafusion-cli/src/object_storage.rs:
##########
@@ -68,7 +68,7 @@ fn build_gcs_object_store(url: &Url) -> Result<Arc<dyn
object_store::ObjectStore
let host = get_host_name(url)?;
let mut builder = GoogleCloudStorageBuilder::new().with_bucket_name(host);
- if let Some(path) = env::var("GCP_SERVICE_ACCOUNT_PATH").ok() {
+ if let Ok(path) = env::var("GCP_SERVICE_ACCOUNT_PATH") {
Review Comment:
Sure, I will split this PR to the following 3:
1. PhysicalExpr related change: implement PartialEq<dyn Any> for
PhysicalExpr, PhysicalExpr::children() and PhysicalExpr::new_with_children, the
utils code for iterating / manipulating physical exprs.
2. Execution plan related changes: output_partitioning(), output_ordering(),
required_input_distribution(), the code for calculating equivalence properties
(and tests)
3. The code in datafusion/core/src/physical_optimizer/enforcement.rs and the
tests.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]