I am facing this when I am trying to do SELECT using WHERE clause. Any ideas what this is about?
This is my query:
ctx := cqlc.NewContext()
iter, err := ctx.Select().
From(A).
Where(
A.X.To(true),
A.Y.Eq(cityID)).
Fetch(c.session)
X is a boolean column