我有一个查询,输出为
Could not determine polymorphic type because input has type “unknown”
查询:
select ( array_to_string(array_agg(name),','))::text as name,path from(select 'fullpath' as Path,null as id,'' as name from tblabc where key = 'key1' and value = '1' ) as e group by path;
我有一个postgres数据库
解决方法
这里的问题是”名称实际上没有为值指定类型.它是未知类型,Postgresql通常会推断出真正的类型,例如你要插入的列或者传递给它的函数.
在这种情况下,您将它传递给array_agg,这是一个polymorphc函数.它可以接受伪类型任意元素的输入,这实际上只是意味着“在运行时弄清楚它”.
Postgresql仍然可以解决它,除了array_to_string实际上并没有将text []作为输入.它需要任何数组 – 另一种多态类型,就像数组的任何元素一样.
因此查询中没有任何内容可以告诉Postgresql这是什么类型.它可能猜到你的意思是文字,但它有点太挑剔了.所以它抱怨.该问题简化为:
regress=> SELECT array_to_string(array_agg(''),'); ERROR: could not determine polymorphic type because input has type "unknown"
TEXT '' AS name
或使用演员表:
CAST('' AS text) AS name
或Postgresql简写:
''::text
例子:
regress=> SELECT array_to_string(array_agg(TEXT ''),'); array_to_string ----------------- (1 row) regress=> SELECT array_to_string(array_agg(''::text),'); array_to_string ----------------- (1 row) regress=> SELECT array_to_string(array_agg(CAST('' AS text)),'); array_to_string ----------------- (1 row)