We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 303bc92 commit 7d03992Copy full SHA for 7d03992
site/content/in-dev/unreleased/command-line-interface.md
@@ -1213,12 +1213,9 @@ for principal_role in ${principal_roles}; do
1213
catalog_roles=$(polaris catalog-roles --list --principal-role "${principal_role}")
1214
for catalog_role in ${catalog_roles}; do
1215
grants=$(polaris privileges list --catalog-role "${catalog_role}" --catalog "${catalog}")
1216
- for grant in $(echo "${grants}" | jq -c '.[] | select(.privilege == "TABLE_READ_DATA")'); do
1217
- echo "${grant}"
1218
- fi
+ for grant in $(echo "${grants}" | jq -c '.[] | select(.privilege == "TABLE_READ_DATA")'); do
+ echo "${grant}"
1219
done
1220
1221
1222
```
1223
-
1224
0 commit comments