我想创建一个自定义类型,它是int [4]的别名。
我尝试了以下陈述:
create type rect as int[4];
“int”附近的语法错误
create type rect as (int[4]);
[
附近的语法错误
在文档(https://www.postgresql.org/docs/9.2/static/sql-createtype.html)中,我也找不到有关创建“别名”数据类型的任何信息。
这里的语法是否正确? 我正在运行Postgres 9.6beta4