@@ -759,7 +759,7 @@ pub trait EagerJoinStream {
759759        match  self . right_stream ( ) . next ( ) . await  { 
760760            Some ( Ok ( batch) )  => { 
761761                if  batch. num_rows ( )  == 0  { 
762-                     return  Ok ( StreamJoinStateResult :: Continue ) ; 
762+                     return  Ok ( StatefulStreamResult :: Continue ) ; 
763763                } 
764764
765765                self . set_state ( EagerJoinStreamState :: PullLeft ) ; 
@@ -788,7 +788,7 @@ pub trait EagerJoinStream {
788788        match  self . left_stream ( ) . next ( ) . await  { 
789789            Some ( Ok ( batch) )  => { 
790790                if  batch. num_rows ( )  == 0  { 
791-                     return  Ok ( StreamJoinStateResult :: Continue ) ; 
791+                     return  Ok ( StatefulStreamResult :: Continue ) ; 
792792                } 
793793                self . set_state ( EagerJoinStreamState :: PullRight ) ; 
794794                self . process_batch_from_left ( batch) 
@@ -817,7 +817,7 @@ pub trait EagerJoinStream {
817817        match  self . left_stream ( ) . next ( ) . await  { 
818818            Some ( Ok ( batch) )  => { 
819819                if  batch. num_rows ( )  == 0  { 
820-                     return  Ok ( StreamJoinStateResult :: Continue ) ; 
820+                     return  Ok ( StatefulStreamResult :: Continue ) ; 
821821                } 
822822                self . process_batch_after_right_end ( batch) 
823823            } 
@@ -847,7 +847,7 @@ pub trait EagerJoinStream {
847847        match  self . right_stream ( ) . next ( ) . await  { 
848848            Some ( Ok ( batch) )  => { 
849849                if  batch. num_rows ( )  == 0  { 
850-                     return  Ok ( StreamJoinStateResult :: Continue ) ; 
850+                     return  Ok ( StatefulStreamResult :: Continue ) ; 
851851                } 
852852                self . process_batch_after_left_end ( batch) 
853853            } 
0 commit comments