File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -434,7 +434,7 @@ def _numba_equi_join_range_join(
434
434
# used to find the first possible match
435
435
# for the less than section below
436
436
max_arr = np .empty_like (le_arr2 )
437
- counter = 1 # are all groups monotonic increasing?
437
+ counter = 0 # are all groups monotonic increasing?
438
438
for num in prange (length ):
439
439
slice_start = slice_starts [num ]
440
440
slice_end = slice_ends [num ]
@@ -448,7 +448,7 @@ def _numba_equi_join_range_join(
448
448
if check :
449
449
start = new_value
450
450
else :
451
- counter = 0
451
+ counter += 1
452
452
max_arr [slice_start + n ] = start
453
453
454
454
if counts > 0 :
Original file line number Diff line number Diff line change 13
13
from janitor import col
14
14
15
15
16
+ pd .set_option ("display.max_columns" , None )
17
+ pd .set_option ("display.expand_frame_repr" , False )
18
+ pd .set_option ("max_colwidth" , None )
19
+
20
+
16
21
@pytest .fixture
17
22
def dummy ():
18
23
"""Test fixture."""
You can’t perform that action at this time.
0 commit comments