41

Is there a graphical way to create/manipulate/view special database types in PgAdmin?

For example, in PostgreSQL we have:

CREATE TYPE compfoo AS (f1 int, f2 text);

I’ve noticed pgAdmin almost shows everything graphically, such as triggers, views, functions, and of course tables, but I couldn’t find the types that I created.

4

1 回答 1

71

您只需要通过菜单 File → Options... → Browser 启用查看类型并检查Types

在此处输入图像描述

根据pgAdmin的文档

复选框列表用于选择要在浏览器树中显示的对象类型。默认情况下,仅显示最常用的对象类型。减少显示的对象类型的数量可以提高 pgAdmin 在查询系统目录时的速度。使用默认按钮将列表重置为其默认设置。

于 2011-09-01T14:42:29.990 回答