This is an automated email from the ASF dual-hosted git repository.
nju_yaho pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git
The following commit(s) were added to refs/heads/main by this push:
new a4c2a45f Reduce the number of calls to create_logical_plan (#842)
a4c2a45f is described below
commit a4c2a45f013d7c334f4833eca2eb242b3c3554f0
Author: Jonah Gao <[email protected]>
AuthorDate: Thu Jul 13 10:20:27 2023 +0800
Reduce the number of calls to create_logical_plan (#842)
---
ballista/client/src/context.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ballista/client/src/context.rs b/ballista/client/src/context.rs
index f4885ccb..ed10ee8f 100644
--- a/ballista/client/src/context.rs
+++ b/ballista/client/src/context.rs
@@ -455,7 +455,7 @@ impl BallistaContext {
))),
}
}
- _ => ctx.sql(sql).await,
+ _ => ctx.execute_logical_plan(plan).await,
}
}
}