@@ -2744,23 +2744,21 @@ async fn test_count_wildcard_on_where_exist() -> Result<()> {
27442744
27452745 assert_snapshot ! (
27462746 pretty_format_batches( & sql_results) . unwrap( ) ,
2747- @r###"
2748- +---------------+---------------------------------------------------------+
2749- | plan_type | plan |
2750- +---------------+---------------------------------------------------------+
2751- | logical_plan | LeftSemi Join: |
2752- | | TableScan: t1 projection=[a, b] |
2753- | | SubqueryAlias: __correlated_sq_1 |
2754- | | Projection: |
2755- | | Aggregate: groupBy=[[]], aggr=[[count(Int64(1))]] |
2756- | | TableScan: t2 projection=[] |
2757- | physical_plan | NestedLoopJoinExec: join_type=RightSemi |
2758- | | ProjectionExec: expr=[] |
2759- | | PlaceholderRowExec |
2760- | | DataSourceExec: partitions=1, partition_sizes=[1] |
2761- | | |
2762- +---------------+---------------------------------------------------------+
2763- "###
2747+ @r"
2748+ +---------------+-----------------------------------------------------+
2749+ | plan_type | plan |
2750+ +---------------+-----------------------------------------------------+
2751+ | logical_plan | LeftSemi Join: |
2752+ | | TableScan: t1 projection=[a, b] |
2753+ | | SubqueryAlias: __correlated_sq_1 |
2754+ | | Aggregate: groupBy=[[]], aggr=[[]] |
2755+ | | TableScan: t2 projection=[] |
2756+ | physical_plan | NestedLoopJoinExec: join_type=RightSemi |
2757+ | | PlaceholderRowExec |
2758+ | | DataSourceExec: partitions=1, partition_sizes=[1] |
2759+ | | |
2760+ +---------------+-----------------------------------------------------+
2761+ "
27642762 ) ;
27652763
27662764 let df_results = ctx
@@ -2783,23 +2781,21 @@ async fn test_count_wildcard_on_where_exist() -> Result<()> {
27832781
27842782 assert_snapshot ! (
27852783 pretty_format_batches( & df_results) . unwrap( ) ,
2786- @r###"
2787- +---------------+---------------------------------------------------------------------+
2788- | plan_type | plan |
2789- +---------------+---------------------------------------------------------------------+
2790- | logical_plan | LeftSemi Join: |
2791- | | TableScan: t1 projection=[a, b] |
2792- | | SubqueryAlias: __correlated_sq_1 |
2793- | | Projection: |
2794- | | Aggregate: groupBy=[[]], aggr=[[count(Int64(1)) AS count(*)]] |
2795- | | TableScan: t2 projection=[] |
2796- | physical_plan | NestedLoopJoinExec: join_type=RightSemi |
2797- | | ProjectionExec: expr=[] |
2798- | | PlaceholderRowExec |
2799- | | DataSourceExec: partitions=1, partition_sizes=[1] |
2800- | | |
2801- +---------------+---------------------------------------------------------------------+
2802- "###
2784+ @r"
2785+ +---------------+-----------------------------------------------------+
2786+ | plan_type | plan |
2787+ +---------------+-----------------------------------------------------+
2788+ | logical_plan | LeftSemi Join: |
2789+ | | TableScan: t1 projection=[a, b] |
2790+ | | SubqueryAlias: __correlated_sq_1 |
2791+ | | Aggregate: groupBy=[[]], aggr=[[]] |
2792+ | | TableScan: t2 projection=[] |
2793+ | physical_plan | NestedLoopJoinExec: join_type=RightSemi |
2794+ | | PlaceholderRowExec |
2795+ | | DataSourceExec: partitions=1, partition_sizes=[1] |
2796+ | | |
2797+ +---------------+-----------------------------------------------------+
2798+ "
28032799 ) ;
28042800
28052801 Ok ( ( ) )
0 commit comments