Hi,
I am a Cascalog enthusiast and very new to it. I am working on a project
and am struck with a query where I would like to use logical "and".
But when I use and as
(?<- (stdout) [?u ?s](data1 ?u ?s _)(data2 ?s ?s2)(and (not= ?s ?s2) (< ?u
4)))
I get the error
Can't take the value of a macro #'clojure.core/and
I then defined a function for "and"
(defn and_op [a b] (and a b))
and used that but then I got the error ?s is not defined
I would sincerely appreciate any help in this regard.
Thanks,
Kunal