Skip to content

Commit 0809028

Browse files
committed
update warmup() function
1 parent 508c3f6 commit 0809028

File tree

3 files changed

+1541
-1
lines changed

3 files changed

+1541
-1
lines changed

src/join/main.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ function DataAPI.innerjoin(dsl::AbstractDataset, dsr::AbstractDataset; on = noth
297297
onright = multiple_getindex(index(dsr), on)
298298
onright_range = nothing
299299

300-
elseif (typeof(on) <: AbstractVector{<:Pair{Symbol, Symbol}}) || (typeof(on) <: AbstractVector{<:Pair{<:AbstractString, <:AbstractString}})
300+
elseif (typeof(on) <: AbstractVector{<:Pair{<:ColumnIndex, <:ColumnIndex}}) || (typeof(on) <: AbstractVector{<:Pair{<:AbstractString, <:AbstractString}})
301301
onleft = multiple_getindex(index(dsl), map(x->x.first, on))
302302
onright = multiple_getindex(index(dsr), map(x->x.second, on))
303303
onright_range = nothing

0 commit comments

Comments
 (0)