如何在 jpa 存储库中使用 jsonb_set 来传递动态字符串?

How to use jsonb_set in jpa repository, for passing dynamic strings?

postgres 命令在 pgadmin4 中有效,但在 java 代码中无效

    String toAdd = "case_data->'business' || '{\"l\":\"cpaz\"}'";
this.orchestrateRepo.updateColumn(toAdd, case_id);



 @Query(value = "Update onboarding.onboarding_cases set case_data = jsonb_set(case_data, '{business}', ?1 )where case_id=?2", nativeQuery = true)
        void updateColumn(String toAdd, BigInteger case_id);

我正在将一个字符串传递给 Add,我想动态插入该值..但是它给出了错误

org.postgresql.util.PSQLException: ERROR: function jsonb_set(jsonb, unknown, character varying) does not exist
  Hint: No function matches the given name and argument types. You might need to add explicit type casts.

如果我这样写,查询工作正常

 @Query(value = "Update onboarding.onboarding_cases set case_data = jsonb_set(case_data, '{business}', case_data->'business' || '{"t":"cpaz"}' )where case_id=?2", nativeQuery = true)
        void updateColumn(BigInteger case_id);

我该怎么办

终于解决了这个问题。为正在寻找的人发布答案。

只传递键值。

String toAdd = "value";

将查询更改为:

@Query(value = "Update onboarding.onboarding_cases set case_data=jsonb_set(case_data,'{business,key)}',to_jsonb(?1)) where case_id=?2", nativeQuery = true)
    void updateColumn(String toAdd, BigInteger case_id);