xudong963 commented on a change in pull request #1437:
URL: https://github.com/apache/arrow-datafusion/pull/1437#discussion_r767168233
##########
File path: datafusion/src/sql/planner.rs
##########
@@ -113,7 +121,10 @@ fn plan_indexed(expr: Expr, mut keys: Vec<Value>) -> Expr {
impl<'a, S: ContextProvider> SqlToRel<'a, S> {
/// Create a new query planner
pub fn new(schema_provider: &'a S) -> Self {
- SqlToRel { schema_provider }
+ SqlToRel {
+ schema_provider,
+ project_recursion: ProtectRecursion::new_with_limit(2048),
Review comment:
This constant is what I feel, I want to know your thoughts.
--
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]