1

这可能会很薄,但我已经没有选择了......

我正在使用带有 hugsql 的 clojure,并且我是数据库技术的真正初学者。我正在尝试调用同事在数据库中定义的用户定义函数。

所以,我的问题是:在数据库软件(如 dbeaver)中进行查询,我得到的结果没有问题,但是从 hugsql 运行我得到一个错误,声称它无法识别该函数。

我的 .sql 文件类似于

-- :name a-fake-name :? :1
-- :doc some fake documentation

select * from a_fake_user_defined_function(:arg1, :arg2, :arg3, :arg4, 1); 

我读了这样的查询

(ns sql.commands
  (:require [hugsql.core :as hugsql]))

(hugsql/def-db-fns "sql/file.sql")

我从 clojure 运行命令:

(def db
  {:classname "org.postgresql.Driver"
   :subprotocol "postgresql"
   :subname subname
   :user user
   :password password})

(sql/a-fake-name db {:arg1 "first-argument" :arg2 "second-one" :arg3 "third" :arg4 "and-forth"})

我得到的错误是

ERROR: function a_fake_user_defined_function(character varying,
   character varying, character varying, character varying, integer)
   does not exist Hint: No function matches the given name and
   argument types. You might need to add explicit type casts.
   Position: 15

从我假设的错误来看,我缺少一些符号或配置......有人知道我能做什么吗?

我试图查看hugsql 文档但没有运气。

谢谢!

PS .:我很清楚在stackoverflow上提供可重现的错误是一种很好的做法,但这是我的工作,我对如何重现数据库一无所知。希望这已经足够了......

4

1 回答 1

1

正如@cfrick 所暗示的,问题出在 hugsql 文件中的参数定义上。一个贡献者也在github issue中提供了答案。

问题是它没有找到具有该名称和那些类型的参数的函数。然后解决方案是使用双冒号键入每个参数(https://www.hugsql.org/#colon)。

于 2021-08-26T12:58:13.817 回答