Skip to content

Commit

Permalink
feat: Add 'Create Namespace' command to CLI (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-kar authored Nov 8, 2024
1 parent ac8d30a commit adc8193
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/iceberg/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,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 @@ -237,6 +236,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

0 comments on commit adc8193

Please sign in to comment.