Fork me on GitHub
#google-cloud
<
2021-02-16
>
oly12:02:17

Trying to run a BQ query in clojure I am strugging with the job create, translating this example I can evaluate up to JobInfo, how ever bigquery.create is failing with No matching method create found taking 1 args for class https://github.com/googleapis/java-bigquery/blob/master/samples/snippets/src/main/java/com/example/bigquery/SimpleApp.java#L53

oly12:02:46

(.create s
         (-> (query)
             (JobInfo/newBuilder)
             (.setJobId (JobId/of (str (java.util.UUID/randomUUID))))))
So I basically have the above, I can evaluate the threading macro but the response passed to .create is failing, probably something I am not understanding in my java interop anyone able to offer some pointers ?