Skip to content

Commit cb5711d

Browse files
committed
fix test formant
1 parent d075c86 commit cb5711d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

datafusion/expr/src/logical_plan/builder.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2708,12 +2708,12 @@ mod tests {
27082708

27092709
assert_snapshot!(plan, @r"
27102710
Union
2711-
Cross Join:
2711+
Cross Join:
27122712
SubqueryAlias: left
27132713
Values: (Int32(1))
27142714
SubqueryAlias: right
27152715
Values: (Int32(1))
2716-
Cross Join:
2716+
Cross Join:
27172717
SubqueryAlias: left
27182718
Values: (Int32(1))
27192719
SubqueryAlias: right

datafusion/optimizer/src/push_down_filter.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2331,7 +2331,7 @@ mod tests {
23312331
plan,
23322332
@r"
23332333
Projection: test.a, test1.d
2334-
Cross Join:
2334+
Cross Join:
23352335
Projection: test.a, test.b, test.c
23362336
TableScan: test, full_filters=[test.a = Int32(1)]
23372337
Projection: test1.d, test1.e, test1.f
@@ -2361,7 +2361,7 @@ mod tests {
23612361
plan,
23622362
@r"
23632363
Projection: test.a, test1.a
2364-
Cross Join:
2364+
Cross Join:
23652365
Projection: test.a, test.b, test.c
23662366
TableScan: test, full_filters=[test.a = Int32(1)]
23672367
Projection: test1.a, test1.b, test1.c

datafusion/optimizer/src/push_down_limit.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ mod test {
10591059
plan,
10601060
@r"
10611061
Limit: skip=0, fetch=1000
1062-
Cross Join:
1062+
Cross Join:
10631063
Limit: skip=0, fetch=1000
10641064
TableScan: test, fetch=1000
10651065
Limit: skip=0, fetch=1000
@@ -1082,7 +1082,7 @@ mod test {
10821082
plan,
10831083
@r"
10841084
Limit: skip=1000, fetch=1000
1085-
Cross Join:
1085+
Cross Join:
10861086
Limit: skip=0, fetch=2000
10871087
TableScan: test, fetch=2000
10881088
Limit: skip=0, fetch=2000

0 commit comments

Comments
 (0)