mustafasrepo commented on code in PR #9005:
URL: https://github.com/apache/arrow-datafusion/pull/9005#discussion_r1467338535


##########
datafusion/sqllogictest/test_files/select.slt:
##########
@@ -1547,3 +1547,17 @@ query I
 select count(1) from v;
 ----
 1
+
+# run below query without logical optimizations
+statement ok
+set datafusion.optimizer.max_passes=0;
+
+statement ok
+CREATE TABLE t(a int, b int);
+
+query I
+select a from t;
+----
+
+statement ok
+set datafusion.optimizer.max_passes=1;

Review Comment:
   As far as I remember default value is 3. It is better to restore it 3.



-- 
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]

Reply via email to