From 00fa3cbb12f6f60374cc1704b7e1f42b337574ef Mon Sep 17 00:00:00 2001 From: Bruce Ritchie Date: Wed, 28 Feb 2024 16:26:23 -0500 Subject: [PATCH] Update datafusion/core/tests/simplification.rs Co-authored-by: Andrew Lamb --- datafusion/core/tests/simplification.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/datafusion/core/tests/simplification.rs b/datafusion/core/tests/simplification.rs index 77a63426771a..76d43b997094 100644 --- a/datafusion/core/tests/simplification.rs +++ b/datafusion/core/tests/simplification.rs @@ -154,6 +154,7 @@ fn fold_and_simplify() { } #[test] +/// Ensure that timestamp expressions are folded so they aren't invoked on each row fn to_timestamp_expr_folded() -> Result<()> { let table_scan = test_table_scan(); let proj = vec![to_timestamp_expr("2020-09-08T12:00:00+00:00")];