The recent SharedArray change to Base created some new ambiguity warnings for DataFrames.
Warning: New definition
getindex(AbstractArray{T,1},Indexer) at
/Users/johnmyleswhite/.julia/DataFrames/src/indexing.jl:195
is ambiguous with:
getindex(SharedArray{T,N},Any...) at sharedarray.jl:156.
To fix, define
getindex(SharedArray{T,1},Indexer)
before the new definition.
— John
