From adc8193de3299b04c9763c2fba529a7b94d080ce Mon Sep 17 00:00:00 2001 From: Alex Karpov Date: Fri, 8 Nov 2024 03:51:13 -0500 Subject: [PATCH] feat: Add 'Create Namespace' command to CLI (#179) --- cmd/iceberg/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/iceberg/main.go b/cmd/iceberg/main.go index de2479f..8db7cc7 100644 --- a/cmd/iceberg/main.go +++ b/cmd/iceberg/main.go @@ -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] @@ -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)