gpt4 book ai didi

postgresql - 数据库碎片查询错误 "parameters must be of length 0 for query"

转载 作者:行者123 更新时间:2023-11-29 12:02:07 29 4
gpt4 key购买 nike

我正在尝试查询 building 表、jsonb metadata 列以及 google_place_ids 属性(这是一个数组)中的 json 数组.

Elixir 给我一个错误:

这是片段生成的查询:

SELECT b0."id", b0."base_sku", b0."name", b0."logo", b0."email", b0."active", b0."sync", b0."building_group_id", b0."operating_region_id", b0."building_package_id", b0."metadata", b0."location", b0."inserted_at", b0."updated_at" FROM "buildings" AS b0 WHERE (b0."metadata"->'google_place_ids' @> '["$1"]') AND (b0."active" = TRUE) ["1234231223123"]

代码如下:

defp query_by_google_place_id(query, google_place_id) do
from(b in query,
where: fragment("?->'google_place_ids' @> '[\"?\"]'", b.metadata, ^google_place_id),
where: b.active == true,
limit: 1)
end

这是错误:

[error] #PID<0.1340.0> running Proxy.InstrumentedPlug terminated
Server: localhost:4000 (http)
Request: GET /something/google_place_id/1234231223123
** (exit) an exception was raised:
** (ArgumentError) parameters must be of length 0 for query %Postgrex.Query{columns:

最佳答案

这不是 PostgreSQL 理解的方式。问题是 Ecto 的 fragment 不知道您可以在那里使用的 SQL(或其他查询语言),因此它最终将 ? 视为查询参数,而 PostgreSQL 则将其视为查询参数作为原始字符串“$1”。您需要做的是直接以以下形式传递字符串:

fragment("?->'google_place_ids' @> ?", b.metadata, ^"[\"#{google_place_id}\"]")

关于postgresql - 数据库碎片查询错误 "parameters must be of length 0 for query",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53010291/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com