@@ -759,7 +759,7 @@ pub trait EagerJoinStream {
759
759
match self . right_stream ( ) . next ( ) . await {
760
760
Some ( Ok ( batch) ) => {
761
761
if batch. num_rows ( ) == 0 {
762
- return Ok ( StreamJoinStateResult :: Continue ) ;
762
+ return Ok ( StatefulStreamResult :: Continue ) ;
763
763
}
764
764
765
765
self . set_state ( EagerJoinStreamState :: PullLeft ) ;
@@ -788,7 +788,7 @@ pub trait EagerJoinStream {
788
788
match self . left_stream ( ) . next ( ) . await {
789
789
Some ( Ok ( batch) ) => {
790
790
if batch. num_rows ( ) == 0 {
791
- return Ok ( StreamJoinStateResult :: Continue ) ;
791
+ return Ok ( StatefulStreamResult :: Continue ) ;
792
792
}
793
793
self . set_state ( EagerJoinStreamState :: PullRight ) ;
794
794
self . process_batch_from_left ( batch)
@@ -817,7 +817,7 @@ pub trait EagerJoinStream {
817
817
match self . left_stream ( ) . next ( ) . await {
818
818
Some ( Ok ( batch) ) => {
819
819
if batch. num_rows ( ) == 0 {
820
- return Ok ( StreamJoinStateResult :: Continue ) ;
820
+ return Ok ( StatefulStreamResult :: Continue ) ;
821
821
}
822
822
self . process_batch_after_right_end ( batch)
823
823
}
@@ -847,7 +847,7 @@ pub trait EagerJoinStream {
847
847
match self . right_stream ( ) . next ( ) . await {
848
848
Some ( Ok ( batch) ) => {
849
849
if batch. num_rows ( ) == 0 {
850
- return Ok ( StreamJoinStateResult :: Continue ) ;
850
+ return Ok ( StatefulStreamResult :: Continue ) ;
851
851
}
852
852
self . process_batch_after_left_end ( batch)
853
853
}
0 commit comments