fix(databases): rename --description to --name in databases run#122
Merged
Conversation
Align `databases run` with `databases create`, which already uses --name for the catalog alias of the auto-created database.
Contributor
There was a problem hiding this comment.
Clean rename — databases run now matches databases create on --name, and the value still flows into the "name" JSON field via create_database_request, so behavior is unchanged.
nit: the docs still reference the old --description flag for databases run and should be updated to --name (not blocking):
README.md:140andREADME.md:151skills/hotdata/SKILL.md:194andskills/hotdata/SKILL.md:214
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
eddietejeda
added a commit
that referenced
this pull request
Jun 4, 2026
* fix(databases): rename --description to --name in databases run Align `databases run` with `databases create`, which already uses --name for the catalog alias of the auto-created database. * fix(skills): update --description to --name in databases commands Align skill docs with the CLI change in #122: databases create and databases run both use --name, not --description. --------- Co-authored-by: Eddie A Tejeda <669988+eddietejeda@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
--descriptionto--nameindatabases runto be consistent withdatabases create, which already uses--namefor the catalog aliascommand.rs,main.rs, anddatabases.rs(runandcreate_and_return_id)Test plan
hotdata databases run --name my-db -- <cmd>creates a named auto-database and runs the commandhotdata databases run --database <id> -- <cmd>still works (unaffected path)hotdata databases create --name my-dbstill works (unchanged)