We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac8d30a commit adc8193Copy full SHA for adc8193
cmd/iceberg/main.go
@@ -41,7 +41,6 @@ Usage:
41
iceberg describe [options] [namespace | table] IDENTIFIER
42
iceberg (schema | spec | uuid | location) [options] TABLE_ID
43
iceberg create [options] (namespace | table) IDENTIFIER
44
- iceberg create [options] (namespace | table) IDENTIFIER
45
iceberg drop [options] (namespace | table) IDENTIFIER
46
iceberg files [options] TABLE_ID [--history]
47
iceberg rename [options] <from> <to>
@@ -237,6 +236,8 @@ func main() {
237
236
output.Error(err)
238
os.Exit(1)
239
}
+ case cfg.Table:
240
+ output.Error(errors.New("not implemented: Create Table is WIP"))
241
default:
242
output.Error(errors.New("not implemented"))
243
0 commit comments