comphead commented on code in PR #18828:
URL: https://github.com/apache/datafusion/pull/18828#discussion_r2558356544


##########
datafusion/sqllogictest/src/test_context.rs:
##########
@@ -78,7 +78,8 @@ impl TestContext {
     pub async fn try_new_for_test_file(relative_path: &Path) -> Option<Self> {
         let config = SessionConfig::new()
             // hardcode target partitions so plans are deterministic
-            .with_target_partitions(4);
+            .with_target_partitions(4)
+            .with_enable_ansi_mode(true);

Review Comment:
   typically we set a param in slt and then return the original value
   
   ```
   statement ok
   set datafusion.execution.batch_size = 2;
   
   run stuff ....
   
   statement ok
   set datafusion.execution.batch_size = 8192;
   ```
   



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to