Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
TomShawn committed Jan 31, 2024
1 parent ebc552e commit 4de125d
Show file tree
Hide file tree
Showing 13 changed files with 74 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/sys-catalogs/sys-table-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,23 @@
[`pg_am`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-am.md)

[`pg_amop`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-amop.md)

[`pg_amproc`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-amproc.md)

[`pg_appendonly`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-appendonly.md)

[`pg_attribute_encoding`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-attribute-encoding.md)

[`pg_attribute`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-attribute.md)

[`pg_attridef`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-attridef.md)

[`pg_auth_members`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-auth-members.md)

[`pg_authid`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-authid.md)

[`pg_cast`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-cast.md)

[`pg_class`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-class.md)

[`pg_constraint`](/docs/sys-catalogs/sys-tables/sys-tbl-pg-constraint.md)
2 changes: 2 additions & 0 deletions docs/sys-catalogs/sys-tables/sys-tbl-pg-appendonly.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
title: pg_appendonly
---

# pg_appendonly

The `pg_appendonly` table in the `pg_catalog` schema contains information about the storage options and other characteristics of append-optimized tables.

|column|type|references|description|
Expand Down
2 changes: 2 additions & 0 deletions docs/sys-catalogs/sys-tables/sys-tbl-pg-attribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
title: pg_attribute
---

# pg_attribute

The `pg_attribute` table in the `pg_catalog` schema stores information about table columns. There will be exactly one `pg_attribute` row for every column in every table in the database. (There will also be attribute entries for indexes, and all objects that have `pg_class` entries.) The term attribute is equivalent to column.

In a dropped column's `pg_attribute` entry, `atttypid` is reset to zero, but `attlen` and the other fields copied from `pg_type` are still valid. This arrangement is needed to address the situation where the dropped column's data type was later dropped, and so there is no `pg_type` row anymore. `attlen` and the other fields can be used to interpret the contents of a row of the table.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: pg_amproc
---

# pg_amproc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: pg_appendonly
---

# pg_appendonly
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: pg_attribute_encoding
---

# pg_attribute_encoding
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: pg_attribute
---

# pg_attribute
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: pg_attrdef
---

# pg_attrdef
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: pg_auth_members
---

# pg_auth_members
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: pg_authid
---

# pg_authid
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: pg_cast
---

# pg_cast
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: pg_class
---

# pg_class
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: pg_constraint
---

# pg_constraint

0 comments on commit 4de125d

Please sign in to comment.