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

feat: Add 'Create Namespace' command to CLI #179

Merged
merged 3 commits into from
Nov 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cmd/iceberg/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ Usage:
iceberg describe [options] [namespace | table] IDENTIFIER
iceberg (schema | spec | uuid | location) [options] TABLE_ID
iceberg create [options] (namespace | table) IDENTIFIER
iceberg create [options] (namespace | table) IDENTIFIER
iceberg drop [options] (namespace | table) IDENTIFIER
iceberg files [options] TABLE_ID [--history]
iceberg rename [options] <from> <to>
Expand Down Expand Up @@ -229,6 +228,8 @@ func main() {
output.Error(err)
os.Exit(1)
}
case cfg.Table:
output.Error(errors.New("not implemented: Create Table is WIP"))
default:
output.Error(errors.New("not implemented"))
os.Exit(1)
Expand Down
Loading