hsiang-c commented on code in PR #18828:
URL: https://github.com/apache/datafusion/pull/18828#discussion_r2543560203
##########
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:
Turn on ANSI mode here so that sqllogictest show overflow error. We need a
different way to toggle ANSI mode.
--
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]