Skip to content

Commit adc8193

Browse files
authored
feat: Add 'Create Namespace' command to CLI (#179)
1 parent ac8d30a commit adc8193

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cmd/iceberg/main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ Usage:
4141
iceberg describe [options] [namespace | table] IDENTIFIER
4242
iceberg (schema | spec | uuid | location) [options] TABLE_ID
4343
iceberg create [options] (namespace | table) IDENTIFIER
44-
iceberg create [options] (namespace | table) IDENTIFIER
4544
iceberg drop [options] (namespace | table) IDENTIFIER
4645
iceberg files [options] TABLE_ID [--history]
4746
iceberg rename [options] <from> <to>
@@ -237,6 +236,8 @@ func main() {
237236
output.Error(err)
238237
os.Exit(1)
239238
}
239+
case cfg.Table:
240+
output.Error(errors.New("not implemented: Create Table is WIP"))
240241
default:
241242
output.Error(errors.New("not implemented"))
242243
os.Exit(1)

0 commit comments

Comments
 (0)