当我像下面那样运行示例语句时:
select cube_union('(0,5,2),(2,3,1)', '0')
但遇到错误:
postgres=# select cube_union('(0,5,2),(2,3,1)', '0');
ERROR: function cube_union(unknown, unknown) does not exist
LINE 1: select cube_union('(0,5,2),(2,3,1)', '0');
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
postgres=#
有人可以帮助我吗?我有什么地方需要设置或需要单独安装该功能。
答案 0 :(得分:1)
cube_union()
功能由扩展名cube
要安装扩展程序,您需要create extension
每个数据库都安装了扩展程序,因此您需要以超级用户身份连接到正在使用的数据库,然后运行:
create extension cube;