Skip to content

Commit 07e63bd

Browse files
authored
revise update password to modify password in authority management (#813)
* revise update password to modify password in authority management * revise update password to modify password in SQL manual
1 parent 894193e commit 07e63bd

File tree

20 files changed

+36
-36
lines changed

20 files changed

+36
-36
lines changed

src/UserGuide/Master/Table/User-Manual/Authority-Management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,9 @@ Constraints:
183183
* Username: 4-32 characters (letters, numbers, special chars: `!@#$%^&*()_+-=`). Cannot duplicate the admin (`root`) username.
184184
* Password: 4-32 characters (letters, numbers, special chars). Stored as SHA-256 hash by default.
185185

186-
2. Update Password
186+
2. Modify Password
187187

188-
Users can update their own passwords. Updating others' passwords requires `MANAGE_USER`.
188+
Users can modify their own passwords. Modifying others' passwords requires `MANAGE_USER`.
189189

190190
```SQL
191191
ALTER USER <USERNAME> SET PASSWORD <password>

src/UserGuide/Master/Tree/SQL-Manual/SQL-Manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1672,7 +1672,7 @@ LIST PRIVILEGES OF ROLE <roleName>;
16721672
eg: LIST PRIVILEGES OF ROLE actor;
16731673
```
16741674

1675-
- Update password
1675+
- Modify password
16761676

16771677
```sql
16781678
ALTER USER <username> SET PASSWORD <password>;

src/UserGuide/Master/Tree/User-Manual/Authority-Management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,9 @@ LIST PRIVILEGES OF ROLE <roleName>;
264264
eg: LIST PRIVILEGES OF ROLE actor;
265265
```
266266

267-
- Update password
267+
- Modify password
268268

269-
Users can update their own password, but updating passwords of other users requires the MANAGE_USER permission.
269+
Users can modify their own password, but modifying passwords of other users requires the MANAGE_USER permission.
270270

271271
```sql
272272
ALTER USER <username> SET PASSWORD <password>;

src/UserGuide/V1.3.x/SQL-Manual/SQL-Manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1672,7 +1672,7 @@ LIST PRIVILEGES OF ROLE <roleName>;
16721672
eg: LIST PRIVILEGES OF ROLE actor;
16731673
```
16741674

1675-
- Update password
1675+
- Modify password
16761676

16771677
```sql
16781678
ALTER USER <username> SET PASSWORD <password>;

src/UserGuide/V1.3.x/User-Manual/Authority-Management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,9 @@ LIST PRIVILEGES OF ROLE <roleName>;
264264
eg: LIST PRIVILEGES OF ROLE actor;
265265
```
266266

267-
- Update password
267+
- Modify password
268268

269-
Users can update their own password, but updating passwords of other users requires the MANAGE_USER permission.
269+
Users can modify their own password, but modifying passwords of other users requires the MANAGE_USER permission.
270270

271271
```sql
272272
ALTER USER <username> SET PASSWORD <password>;

src/UserGuide/dev-1.3/SQL-Manual/SQL-Manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1672,7 +1672,7 @@ LIST PRIVILEGES OF ROLE <roleName>;
16721672
eg: LIST PRIVILEGES OF ROLE actor;
16731673
```
16741674

1675-
- Update password
1675+
- Modify password
16761676

16771677
```sql
16781678
ALTER USER <username> SET PASSWORD <password>;

src/UserGuide/dev-1.3/User-Manual/Authority-Management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,9 @@ LIST PRIVILEGES OF ROLE <roleName>;
264264
eg: LIST PRIVILEGES OF ROLE actor;
265265
```
266266

267-
- Update password
267+
- Modify password
268268

269-
Users can update their own password, but updating passwords of other users requires the MANAGE_USER permission.
269+
Users can modify their own password, but modifying passwords of other users requires the MANAGE_USER permission.
270270

271271
```sql
272272
ALTER USER <username> SET PASSWORD <password>;

src/UserGuide/latest-Table/User-Manual/Authority-Management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,9 @@ Constraints:
183183
* Username: 4-32 characters (letters, numbers, special chars: `!@#$%^&*()_+-=`). Cannot duplicate the admin (`root`) username.
184184
* Password: 4-32 characters (letters, numbers, special chars). Stored as SHA-256 hash by default.
185185

186-
2. Update Password
186+
2. Modify Password
187187

188-
Users can update their own passwords. Updating others' passwords requires `MANAGE_USER`.
188+
Users can modify their own passwords. Modifying others' passwords requires `MANAGE_USER`.
189189

190190
```SQL
191191
ALTER USER <USERNAME> SET PASSWORD <password>

src/UserGuide/latest/SQL-Manual/SQL-Manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1672,7 +1672,7 @@ LIST PRIVILEGES OF ROLE <roleName>;
16721672
eg: LIST PRIVILEGES OF ROLE actor;
16731673
```
16741674

1675-
- Update password
1675+
- Modify password
16761676

16771677
```sql
16781678
ALTER USER <username> SET PASSWORD <password>;

src/UserGuide/latest/User-Manual/Authority-Management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,9 @@ LIST PRIVILEGES OF ROLE <roleName>;
264264
eg: LIST PRIVILEGES OF ROLE actor;
265265
```
266266

267-
- Update password
267+
- Modify password
268268

269-
Users can update their own password, but updating passwords of other users requires the MANAGE_USER permission.
269+
Users can modify their own password, but modifying passwords of other users requires the MANAGE_USER permission.
270270

271271
```sql
272272
ALTER USER <username> SET PASSWORD <password>;

0 commit comments

Comments
 (0)