This is an automated email from the ASF dual-hosted git repository.
emaynard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 1120b7919 Add doc for repair option (#1993)
1120b7919 is described below
commit 1120b79195cfe432c67e9203496b295a83b03604
Author: Yong Zheng <[email protected]>
AuthorDate: Wed Jul 2 22:03:40 2025 -0500
Add doc for repair option (#1993)
PR for https://github.com/apache/polaris/issues/1864
---
site/content/in-dev/unreleased/command-line-interface.md | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/site/content/in-dev/unreleased/command-line-interface.md
b/site/content/in-dev/unreleased/command-line-interface.md
index 3cd06713e..094b5dbdb 100644
--- a/site/content/in-dev/unreleased/command-line-interface.md
+++ b/site/content/in-dev/unreleased/command-line-interface.md
@@ -47,6 +47,7 @@ options:
5. namespaces
6. privileges
7. profiles
+8. repair
Each _command_ supports several _subcommands_, and some _subcommands_ have
_actions_ that come after the subcommand in turn. Finally, _arguments_ follow
to form a full invocation. Within a set of named arguments at the end of an
invocation ordering is generally not important. Many invocations also have a
required positional argument of the type that the _command_ refers to. Again,
the ordering of this positional argument relative to named arguments is not
important.
@@ -59,6 +60,7 @@ polaris catalogs update --property foo=bar some_other_catalog
polaris catalogs update another_catalog --property k=v
polaris privileges namespace grant --namespace some.schema --catalog
fourth_catalog --catalog-role some_catalog_role TABLE_READ_DATA
polaris profiles list
+polaris repair
```
### Authentication
@@ -1185,6 +1187,10 @@ options:
polaris profiles update dev
```
+### repair
+
+The `repair` command is a bash script wrapper used to regenerate Python client
code and update necessary dependencies, ensuring the Polaris client remains
up-to-date and functional. **Please note that this command does not support any
options and its usage information is not available via a `--help` flag.**
+
## Examples
This section outlines example code for a few common operations as well as for
some more complex ones.