add note about privs

This commit is contained in:
DanRoscigno 2022-09-13 12:40:16 -04:00
parent 7e3fb0a681
commit fc2e7159f0

View File

@ -35,3 +35,9 @@ An [alternative way to delete rows](./alter/delete.md) in ClickHouse is `ALTER T
Even though deletes are becoming more lightweight in ClickHouse, they should still not be used as aggressively as on OLTP system. Ligthweight deletes are currently efficient for wide parts, but for compact parts they can be a heavyweight operation, and it may be better to use `ALTER TABLE` for some scenarios.
:::
:::note
DELETE FROM requires the ALTER DELETE privledge:
```sql
grant ALTER DELETE ON db.table to username;
```
:::