Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/user/content/reference/system-catalog/mz_catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ Field | Type | Meaning
`oid` | [`oid`] | A [PostgreSQL-compatible OID][`oid`] for the relation.
`schema_id` | [`text`] | The ID of the schema to which the relation belongs. Corresponds to [`mz_schemas.id`](/reference/system-catalog/mz_catalog/#mz_schemas).
`name` | [`text`] | The name of the relation.
`type` | [`text`] | The type of the relation: either `table`, `source`, `view`, or `materialized view`.
`type` | [`text`] | The type of the relation: either `table`, `source`, `view`, or `materialized-view`.
`owner_id` | [`text`] | The role ID of the owner of the relation. Corresponds to [`mz_roles.id`](/reference/system-catalog/mz_catalog/#mz_roles).
`cluster_id`| [`text`] | The ID of the cluster maintaining the source, materialized view, index, or sink. Corresponds to [`mz_clusters.id`](/reference/system-catalog/mz_catalog/#mz_clusters). `NULL` for other object types.
`privileges`| [`mz_aclitem array`] | The privileges belonging to the relation.
Expand Down
6 changes: 3 additions & 3 deletions doc/user/content/reference/system-catalog/mz_internal.md
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ The `mz_object_fully_qualified_names` view enriches the [`mz_catalog.mz_objects`
| --------------- | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| `id` | [`text`] | Materialize's unique ID for the object. |
| `name` | [`text`] | The name of the object. |
| `object_type` | [`text`] | The type of the object: one of `table`, `source`, `view`, `materialized view`, `sink`, `index`, `connection`, `secret`, `type`, or `function`. |
| `object_type` | [`text`] | The type of the object: one of `table`, `source`, `view`, `materialized-view`, `sink`, `index`, `connection`, `secret`, `type`, or `function`. |
| `schema_id` | [`text`] | The ID of the schema to which the object belongs. Corresponds to [`mz_schemas.id`](/reference/system-catalog/mz_catalog/#mz_schemas). |
| `schema_name` | [`text`] | The name of the schema to which the object belongs. Corresponds to [`mz_schemas.name`](/reference/system-catalog/mz_catalog/#mz_schemas). |
| `database_id` | [`text`] | The ID of the database to which the object belongs. Corresponds to [`mz_databases.id`](/reference/system-catalog/mz_catalog/#mz_schemas). |
Expand All @@ -607,7 +607,7 @@ The `mz_object_lifetimes` view enriches the [`mz_catalog.mz_objects`](/reference
| --------------- | ------------------------------ | ------------------------------------------------- |
| `id` | [`text`] | Materialize's unique ID for the object. |
| `previous_id` | [`text`] | The object's previous ID, if one exists. |
| `object_type` | [`text`] | The type of the object: one of `table`, `source`, `view`, `materialized view`, `sink`, `index`, `connection`, `secret`, `type`, or `function`. |
| `object_type` | [`text`] | The type of the object: one of `table`, `source`, `view`, `materialized-view`, `sink`, `index`, `connection`, `secret`, `type`, or `function`. |
| `event_type` | [`text`] | The lifetime event, either `create` or `drop`. |
| `occurred_at` | [`timestamp with time zone`] | Wall-clock timestamp of when the event occurred. |

Expand All @@ -620,7 +620,7 @@ The `mz_object_history` view enriches the [`mz_catalog.mz_objects`](/reference/s
| --------------- | ------------------------------ | ------------------------------------------------- |
| `id` | [`text`] | Materialize's unique ID for the object. |
| `cluster_id` | [`text`] | The object's cluster ID. `NULL` if the object has no associated cluster. |
| `object_type` | [`text`] | The type of the object: one of `table`, `source`, `view`, `materialized view`, `sink`, `index`, `connection`, `secret`, `type`, or `function`. |
| `object_type` | [`text`] | The type of the object: one of `table`, `source`, `view`, `materialized-view`, `sink`, `index`, `connection`, `secret`, `type`, or `function`. |
| `created_at` | [`timestamp with time zone`] | Wall-clock timestamp of when the object was created. `NULL` for built in system objects. |
| `dropped_at` | [`timestamp with time zone`] | Wall-clock timestamp of when the object was dropped. `NULL` for built in system objects or if the object hasn't been dropped. |

Expand Down
Loading
Loading