Whenever I load Parquet with using Parquet, I get this warning:
WARNING: Method definition copy!(T, T) in module Thrift at C:\Users\anthoff\.julia\v0.6\Thrift\src\base.jl:591 overwritten in module ProtoBuf at C:\Users\anthoff\.julia\v0.6\ProtoBuf\src\utils.jl:15.
Looking at those definitions, they look pretty type-piracy to me, so maybe the right solution would be to just give them some other name in these packages and not add these methods to Base.copy! in the first place?
Whenever I load Parquet with
using Parquet
, I get this warning:Looking at those definitions, they look pretty type-piracy to me, so maybe the right solution would be to just give them some other name in these packages and not add these methods to
Base.copy!
in the first place?