@@ -1056,7 +1056,6 @@ mod tests {
10561056 // filter is before projection
10571057 let expected = "\
10581058 Projection: test.a AS b, test.c\
1059- \n Filter: test.a = Int64(1)\
10601059 \n TableScan: test, full_filters=[test.a = Int64(1)]";
10611060 assert_optimized_plan_eq ( & plan, expected)
10621061 }
@@ -1281,8 +1280,7 @@ mod tests {
12811280 Filter: SUM(test.c) > Int64(10)\
12821281 \n Aggregate: groupBy=[[b]], aggr=[[SUM(test.c)]]\
12831282 \n Projection: test.a AS b, test.c\
1284- \n Filter: test.a > Int64(10)\
1285- \n TableScan: test";
1283+ \n TableScan: test, full_filters=[test.a > Int64(10)]";
12861284 assert_optimized_plan_eq ( & plan, expected)
12871285 }
12881286
@@ -2664,7 +2662,7 @@ Projection: a, b
26642662 \n Projection: test1.a, test1.b\
26652663 \n TableScan: test1\
26662664 \n Projection: test2.a, test2.b\
2667- \n TableScan: test2, full_filters=[test2.b > UInt32(2)] ";
2665+ \n TableScan: test2, full_filters=[test2.b > UInt32(2)]";
26682666 assert_optimized_plan_eq ( & plan, expected)
26692667 }
26702668
0 commit comments