4

从 PostgreSQL 9.6 升级到 11 时,以下查询停止工作:

with doc as (select * from documents where name = doc_id)

select jsonb_array_elements_text(permissions)
from users
where users.name = user_name

union

select 
  case 
    when doc.reader = user_name then 'read'
    when doc.owner = user_name then unnest(array['read','write'])
    else unnest(array[]::text[])
    end 
from doc;

union像往常一样将两个值列表放在一起,两个列表可以有零个、一个或多个元素。

第一个select可以返回零,一个或多个只是因为那是users表中的内容。

第二个select总是从表中扫描一行documents,但根据决定返回零、一或多行case

PostgreSQL 9.6 按预期工作,PostgreSQL 11 说:

ERROR:  set-returning functions are not allowed in CASE
LINE 56:    else unnest(array[]::text[])
                 ^
HINT:  You might be able to move the set-returning function into a LATERAL FROM item.

我很欣赏这个建议,但我不知道如何在LATERAL FROM这里使用 a 。

4

1 回答 1

6

这里的提示有点误导。正如它所说,向您的集合返回函数添加横向连接可能会有所帮助(通常),但我认为这对您的情况没有多大意义。

CASE您可以通过更改表达式以返回数组,然后取消嵌套结果来轻松解决此问题:

...
select 
  unnest(
    case 
      when doc.reader = user_name then array['read']
      when doc.owner = user_name then array['read','write']
      else array[]::text[]
    end
  )
from doc;
于 2019-06-13T10:58:36.840 回答