pgAdmin 生成的 CREATE 语句中的 GRANT

发布于 2024-12-03 11:39:11 字数 805 浏览 0 评论 0原文

如果我在 Postgres 中创建以下序列:

CREATE SEQUENCE test
  INCREMENT 1
  MINVALUE 1
  MAXVALUE 9223372036854775807
  START 1
  CACHE 1;
GRANT ALL ON SEQUENCE test TO testuser;
GRANT SELECT ON SEQUENCE test TO testuser2;

然后在 pgAdmin 中选择该序列,单击鼠标右键 -> CREATE 脚本,我得到:

CREATE SEQUENCE test
  INCREMENT 1
  MINVALUE 1
  MAXVALUE 9223372036854775807
  START 1
  CACHE 1;
ALTER TABLE test
  OWNER TO testuser;
GRANT ALL ON TABLE test TO testuser;
GRANT SELECT ON TABLE test TO testuser2;

所以在 GRANT 语句中我看到关键字“TABLE”而不是“SEQUENCE”

  1. 这是为什么?
  2. pgAdmin 如何生成 DDL 提取?

这个问题与我的其他问题之一相关:
查询授予 postgres 中序列的 ​​GRANTS

If I create the following sequence in Postgres:

CREATE SEQUENCE test
  INCREMENT 1
  MINVALUE 1
  MAXVALUE 9223372036854775807
  START 1
  CACHE 1;
GRANT ALL ON SEQUENCE test TO testuser;
GRANT SELECT ON SEQUENCE test TO testuser2;

And then select the sequence in pgAdmin, right mouse click -> CREATE script, I get:

CREATE SEQUENCE test
  INCREMENT 1
  MINVALUE 1
  MAXVALUE 9223372036854775807
  START 1
  CACHE 1;
ALTER TABLE test
  OWNER TO testuser;
GRANT ALL ON TABLE test TO testuser;
GRANT SELECT ON TABLE test TO testuser2;

So in the GRANT statements I see the keyword "TABLE" and not "SEQUENCE"

  1. Why is that?
  2. How is pgAdmin generating the DDL extract?

This question is related to one of my other questions here:
Query GRANTS granted to a sequence in postgres

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

牛↙奶布丁 2024-12-10 11:39:11

在 PostgreSQL 中,序列有点像表。

目录 pg_class 目录表和大多数其他内容
列或在其他方面类似于表。这包括索引(但是
另请参见 pg_index)、序列、视图、复合类型和 TOAST
桌子;参见relkind。

pg_class 的 PostgreSQL 文档,系统目录之一(系统表)

In PostgreSQL, sequences are kind of like tables.

The catalog pg_class catalogs tables and most everything else that has
columns or is otherwise similar to a table. This includes indexes (but
see also pg_index), sequences, views, composite types, and TOAST
tables; see relkind.

PostgreSQL docs for pg_class, one of the system catalogs (system tables)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文