You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an unusual setup where I'm trying to transact numpy ndarrays returned by libpython-clj.
I've added a SettableParameter to next.jdbc to serialise these fancy lists so I can pass them to pgvector, but ran into a problem with HoneySQL where the inability to hash an ndarray broke format-values.
(nsexample
(:require
[clojure.string :as str]
[libpython-clj2.python :as py]
[libpython-clj2.python.protocols]
[libpython-clj2.require :refer [require-python]]
[next.jdbc.prepare :as prepare])
(:import
(org.postgresql.util PGobject)))
(require-python
'[numpy :as np])
(extend-protocol prepare/SettableParameter
libpython_clj2.python.protocols.PPythonType
(set-parameter [v
^java.sql.PreparedStatement s
^long i]
(case (py/python-type v)
:ndarray
(.setObject s i (doto (PGobject.)
(.setType"vector")
(.setValue (str"[" (str/join"," (py/py. v tolist)) "]"))))
;; Default to setting the object as is.
(.setObject s i v))))
I have an unusual setup where I'm trying to transact numpy ndarrays returned by libpython-clj.
I've added a
SettableParameter
to next.jdbc to serialise these fancy lists so I can pass them to pgvector, but ran into a problem with HoneySQL where the inability to hash an ndarray brokeformat-values
.https://clojurians.zulipchat.com/#narrow/stream/151924-data-science/topic/next.2Ejdbc.20and.20libpython-clj
The text was updated successfully, but these errors were encountered: