Skip to content

Commit adf6ab8

Browse files
authored
Fix deprecation of getproperty(::Pairs, s) (#409)
Fixes the deprecation introduced in JuliaLang/julia#39448 (Julia v1.7+)
1 parent 4d71bee commit adf6ab8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arraytypes/arraytypes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ getmetadata(x::ArrowVector) = x.metadata
3232
Base.deleteat!(x::T, inds) where {T <: ArrowVector} = throw(ArgumentError("`$T` does not support `deleteat!`; arrow data is by nature immutable"))
3333

3434
function toarrowvector(x, i=1, de=Dict{Int64, Any}(), ded=DictEncoding[], meta=getmetadata(x); compression::Union{Nothing, Vector{LZ4FrameCompressor}, LZ4FrameCompressor, Vector{ZstdCompressor}, ZstdCompressor}=nothing, kw...)
35-
@debugv 2 "converting top-level column to arrow format: col = $(typeof(x)), compression = $compression, kw = $(kw.data)"
35+
@debugv 2 "converting top-level column to arrow format: col = $(typeof(x)), compression = $compression, kw = $(values(kw))"
3636
@debugv 3 x
3737
A = arrowvector(x, i, 0, 0, de, ded, meta; compression=compression, kw...)
3838
if compression isa LZ4FrameCompressor

0 commit comments

Comments
 (0)