This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-03-22
Channels
- # alda (2)
- # announcements (1)
- # babashka (32)
- # beginners (67)
- # calva (1)
- # cider (19)
- # clerk (11)
- # clj-commons (35)
- # clj-kondo (7)
- # cljsrn (2)
- # clojure (35)
- # clojure-europe (86)
- # clojure-nl (5)
- # clojure-norway (5)
- # clojure-russia (6)
- # clojurescript (16)
- # clr (21)
- # conjure (1)
- # core-async (10)
- # cryogen (1)
- # cursive (12)
- # data-science (1)
- # emacs (29)
- # events (4)
- # figwheel-main (2)
- # graalvm (9)
- # gratitude (7)
- # honeysql (4)
- # hugsql (3)
- # hyperfiddle (23)
- # jobs (1)
- # jobs-discuss (4)
- # joyride (9)
- # malli (2)
- # off-topic (81)
- # portal (7)
- # reagent (19)
- # reitit (1)
- # releases (4)
- # shadow-cljs (121)
- # xtdb (3)
I have a v1 insert-into with `query-values` that formats to "insert into temp_table (with "rows" as (select * from ...) ...)": `(-> (insert-into :temp-table) (query-values (-> (with [:rows (-> (select :*) (from :other) ...)]) ...))`, and i want to transform this to v2. reading the docs, i feel like it should be `(-> (insert-into [:temp-table (-> (with [:rows (-> (select :*) (from :other) ...)]))] ...))` but that doesn't give me the right output.
Hmm, seems i need to leave off the vector from the insert-into
call
opened a github issue about this misunderstanding (and related misunderstandings) https://github.com/seancorfield/honeysql/issues/480
I'm not sure if I understand where the root of the confusion is, so I asked a question there to clarify...
opened a github issue about this misunderstanding (and related misunderstandings) https://github.com/seancorfield/honeysql/issues/480