-
Notifications
You must be signed in to change notification settings - Fork 469
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc/user: promote COMMENT ON to GA #30679
base: main
Are you sure you want to change the base?
Conversation
We also wanted to change |
|
||
<!-- RELATION_SPEC mz_internal.mz_comments --> | ||
| Field | Type | Meaning | | ||
| -------------- |-------------| -------- | | ||
| `id` | [`text`] | The ID of the object. Corresponds to [`mz_objects.id`](../mz_catalog/#mz_objects). | | ||
| `object_type` | [`text`] | The type of object the comment is associated with. | | ||
| `object_sub_id`| [`integer`] | For a comment on a column of a relation, this is the column number. For all other object types this column is `NULL`. | | ||
| `object_sub_id`| [`integer`] | For a comment on a column of a relation, the column number. `NULL` for other object types. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For parallelism, it probably should be more
| `object_sub_id`| [`integer`] | For a comment on a column of a relation, the column number. `NULL` for other object types. | | |
| `object_sub_id`| [`integer`] | For a comment on a column of a relation, the column number. For other object types, `NULL`. | |
or
| `object_sub_id`| [`integer`] | For a comment on a column of a relation, the column number. `NULL` for other object types. | | |
| `object_sub_id`| [`integer`] | The column number for a comment on a column of a relation. `NULL` for other object types. | |
But, recognizing that these pages are slightly loose ... so, feel free to ignore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm mod nit (feel free to ignore nit).
@ParkMyCar: it seems like the remaining task is to stabilize
mz_comments
. Marked that as a TODO under #8394.