From e9e009f3b3d4423e9e6472d0ee6c5d34b12f7481 Mon Sep 17 00:00:00 2001 From: universalmind303 Date: Sun, 27 Oct 2024 15:15:44 -0500 Subject: [PATCH] fix eliminatecrossjoin tests --- .../src/logical_optimization/rules/eliminate_cross_join.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/daft-plan/src/logical_optimization/rules/eliminate_cross_join.rs b/src/daft-plan/src/logical_optimization/rules/eliminate_cross_join.rs index 4a907113b4..cc5ea4646f 100644 --- a/src/daft-plan/src/logical_optimization/rules/eliminate_cross_join.rs +++ b/src/daft-plan/src/logical_optimization/rules/eliminate_cross_join.rs @@ -549,8 +549,7 @@ mod tests { "|", "* Join: Type = Inner", "| Strategy = Auto", - "| Output schema = a#UInt32, b#UInt32, c#UInt32, right.a#UInt32, right.b#UInt32,", - "| right.c#UInt32", + "| Output schema = a#UInt32, b#UInt32, c#UInt32, right.a#UInt32, right.b#UInt32, right.c#UInt32", "|\\", "| * Project: col(a) as right.a, col(b) as right.b, col(c) as right.c", "| |", @@ -693,7 +692,8 @@ mod tests { "| Strategy = Auto", "| Left on = col(a)", "| Right on = col(t3.a)", - "| Output schema = a#UInt32, b#UInt32, c#UInt32, t2.a#UInt32, t2.b#UInt32, t2.c#UInt32, t3.a#UInt32, t3.b#UInt32, t3.c#UInt32, t4.a#UInt32, t4.b#UInt32, t4.c#UInt32", + "| Output schema = a#UInt32, b#UInt32, c#UInt32, t2.a#UInt32, t2.b#UInt32, t2.c#UInt32, t3.a#UInt32, t3.b#UInt32, t3.c#UInt32, t4.a#UInt32, t4.b#UInt32,", + "| t4.c#UInt32", "|\\", "| * Project: col(a) as t3.a, col(b) as t3.b, col(c) as t3.c, col(t4.a), col(t4.b), col(t4.c)", "| |",