This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-go.git
The following commit(s) were added to refs/heads/main by this push:
new adc8193 feat: Add 'Create Namespace' command to CLI (#179)
adc8193 is described below
commit adc8193de3299b04c9763c2fba529a7b94d080ce
Author: Alex Karpov <[email protected]>
AuthorDate: Fri Nov 8 03:51:13 2024 -0500
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] <from> <to>
@@ -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)