-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Docs: Document publish_changes procedure #8706
Conversation
docs/spark-procedures.md
Outdated
@@ -192,6 +192,44 @@ Cherry-pick snapshot 1 with named args | |||
CALL catalog_name.system.cherrypick_snapshot(snapshot_id => 1, table => 'my_table' ) | |||
``` | |||
|
|||
### `publish_changes` | |||
|
|||
Publish changes from a Staged WAP id into the current table state. |
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.
Publish changes from a Staged WAP id into the current table state. | |
Publish changes from a staged WAP ID into the current table state. |
docs/spark-procedures.md
Outdated
|
||
#### Usage | ||
|
||
| Argument Name | Required? | Type | Description | |
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.
remove extra spaces and keep one trailing space.
For example, refer cherrypick_snapshot
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.
same for all the new tables
docs/spark-procedures.md
Outdated
| Argument Name | Required? | Type | Description | | ||
|---------------|-----------|------|-------------------------------------------------| | ||
| `table` | ✔️ | string | Name of the table to update | | ||
| `wap_id` | ✔️ | long | The wap_id to be pusblished from stage to prod. | |
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.
nit: remove fullstop
docs/spark-procedures.md
Outdated
|
||
#### Examples | ||
|
||
publish_changes with wap_id 'wap_id_1' |
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.
publish_changes with wap_id 'wap_id_1' | |
publish_changes with WAP ID 'wap_id_1' |
@nastra , please look. |
added missing docs for procedures
publish_changes
.As per today this is the only procedure missing from doc.
Fixes #1601