Opened 10 years ago
Closed 10 years ago
#23136 closed Cleanup/optimization (fixed)
sqlclear does not notify operator that there is nothing to clear
Reported by: | jackiekazil | Owned by: | Gabriel Muñumel |
---|---|---|---|
Component: | Core (Management commands) | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | yes |
Easy pickings: | yes | UI/UX: | no |
Description
I tried passing sqlclear to dbshell and came up with this error, which was non-descript.
$ django-admin.py sqlclear foia_core | django-admin.py dbshell ERROR: syntax error at or near "/" LINE 1: /Users/jacquelinekazil/Projects/code/foia/foia-core/foia_cor...
Then I tried running each command separately. When I ran sqlclear, nothing appeared to happened.
$ django-admin.py sqlclear foia_core $
This is confusing to user if they are expecting something to happen. There should be output to tell the user what happened.
Example: Foo app has no tables in the database.
Change History (10)
comment:1 by , 10 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 10 years ago
I believe most of the sql* commands besides sqlmigrate are headed down the deprecation path, so this might not be worth it.
comment:4 by , 10 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:5 by , 10 years ago
comment:6 by , 10 years ago
Couple of issues:
- New features are going to master only (not 1.6).
- I only see a test in your commit, not the functional changes (and it isn't an actual pull request).
comment:8 by , 10 years ago
Has patch: | set |
---|---|
Patch needs improvement: | set |
Version: | 1.6 → master |
comment:10 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
In 3e241313a4cea5dbf53068181408a7c34f00c9ca:
Fixed #23136 -- Added a message when sqlclear does nothing
Sounds reasonable, and shouldn't be too hard to implement either. Might be worth checking if other sql* commands are also affected as well.