Skip to content
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

Add delete table #25561

Open
pauldix opened this issue Nov 17, 2024 · 0 comments · May be fixed by #25572
Open

Add delete table #25561

pauldix opened this issue Nov 17, 2024 · 0 comments · May be fixed by #25572
Assignees
Labels

Comments

@pauldix
Copy link
Member

pauldix commented Nov 17, 2024

Similar to #25523, but for table

@pauldix pauldix added the v3 label Nov 17, 2024
praveen-influx added a commit that referenced this issue Nov 21, 2024
This commit allows deleting (soft) a table. For an user, following
command will allow soft deleting a table (bar) in db (foo)

```
influxdb3 table delete --dbname foo --table bar --host $host
```

- Added `soft_delete_table` to `DatabaseManager` trait, which already
  hosts `soft_delete_database` method. The code roughly follows the same
  flow as db delete. Although like db schema, it does clone on write
  because the reference is behind an Arc, `Arc::make_mut` is used in
  this change.
- Moved db delete related cli parser under "manage" module that has both
  db and table delete functionality
- Some minor tidyups (removing unused methods, renaming method so that
  the order in name matches actual return type eg. `table_id_and_schema`,
  should return (id, schema) and not (schema, id))

closes: #25561
@praveen-influx praveen-influx linked a pull request Nov 21, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants