We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4a4a3b commit 7cbdda5Copy full SHA for 7cbdda5
test/runtests.jl
@@ -75,6 +75,7 @@ end
75
t = table([1,2,3], [4,5,6], [0.1, 0.2, 0.3], names = [:x, :y, :z])
76
@test (@where_vec t (:x .< 3) .& (:z .== 0.2)) == view(t, [2])
77
@test @where_vec(t, 1:2) == view(t, 1:2)
78
+ @test @where_vec(rows(t), 1:2) == view(t, 1:2)
79
@test @where_vec((:x .< 3) .& (:z .== 0.2))(t) == view(t, [2])
80
@test (@where t (:x < 3) .& (:z == 0.2)) == view(t, [2])
81
@test @where((:x < 3) .& (:z == 0.2))(t) == view(t, [2])
0 commit comments