I'm trying to use @subset and I'm getting this error:

I'm running Julia v1.6.0 and DataFramesMeta v0.8.0.
The example I'm running is this one:
d = DataFrame(a = [1, 2, missing], b = ["x", "y", missing]); @subset(d, :a .== 1)
Note: I ran using DataFrames; using DataFramesMeta before this.