-
Notifications
You must be signed in to change notification settings - Fork 600
[#5383] Add create table command to the Gravitino CLI #5717
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
Conversation
# Conflicts: # clients/cli/README.md # clients/cli/src/main/java/org/apache/gravitino/cli/FullName.java # clients/cli/src/main/java/org/apache/gravitino/cli/GravitinoCommandLine.java
@justinmclean Is there a way to split this PR to smaller ones for ease of review and change management? A PR with 208 commits, 2800+ lines of change is too big to be reviewed effectively. |
Most of the commits are from other PRs that have been approved. There is no real easy way, as I could not rebase, given this was developed several months ago. The easiest way to review is to look at the files changed not the number of commits. |
Note there will be far less changes to review once the column PR is merged. |
# Conflicts: # clients/cli/src/main/java/org/apache/gravitino/cli/DefaultConverter.java # clients/cli/src/main/java/org/apache/gravitino/cli/TestableCommandLine.java # clients/cli/src/test/java/org/apache/gravitino/cli/TestDefaultConverter.java
@shaofengshi this is ready for review. The failed CI is due to a network error and unrelated to the code changes. |
clients/cli/src/main/java/org/apache/gravitino/cli/GravitinoOptions.java
Outdated
Show resolved
Hide resolved
clients/cli/src/main/java/org/apache/gravitino/cli/ReadTableCSV.java
Outdated
Show resolved
Hide resolved
clients/cli/src/main/java/org/apache/gravitino/cli/ReadTableCSV.java
Outdated
Show resolved
Hide resolved
clients/cli/src/main/java/org/apache/gravitino/cli/commands/CreateTable.java
Show resolved
Hide resolved
lgtm. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
### What changes were proposed in this pull request? Add the ability to create a table via the Gravitino CLI. ### Why are the changes needed? so we can create tables via the CLI. Fix: #5383 ### Does this PR introduce _any_ user-facing change? No, but it expands on CLI commands. ### How was this patch tested? Tested locally.
What changes were proposed in this pull request?
Add the ability to create a table via the Gravitino CLI.
Why are the changes needed?
so we can create tables via the CLI.
Fix: #5383
Does this PR introduce any user-facing change?
No, but it expands on CLI commands.
How was this patch tested?
Tested locally.