justinmclean commented on code in PR #5717:
URL: https://github.com/apache/gravitino/pull/5717#discussion_r1868580055


##########
clients/cli/src/main/java/org/apache/gravitino/cli/commands/CreateTable.java:
##########
@@ -0,0 +1,102 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.gravitino.cli.commands;
+
+import java.util.List;
+import java.util.Map;
+import org.apache.gravitino.NameIdentifier;
+import org.apache.gravitino.cli.ErrorMessages;
+import org.apache.gravitino.cli.ReadTableCSV;
+import org.apache.gravitino.client.GravitinoClient;
+import org.apache.gravitino.exceptions.NoSuchCatalogException;
+import org.apache.gravitino.exceptions.NoSuchMetalakeException;
+import org.apache.gravitino.exceptions.NoSuchSchemaException;
+import org.apache.gravitino.exceptions.TableAlreadyExistsException;
+import org.apache.gravitino.rel.Column;
+
+public class CreateTable extends Command {
+  protected final String metalake;
+  protected final String catalog;
+  protected final String schema;
+  protected final String table;
+  protected final String columnFile;
+  protected final String comment;
+
+  /**
+   * Create a new table.
+   *
+   * @param url The URL of the Gravitino server.
+   * @param ignoreVersions If true don't check the client/server versions 
match.
+   * @param metalake The name of the metalake.
+   * @param catalog The name of the catalog.
+   * @param schema The name of the schema.
+   * @param table The name of the table.
+   * @param columnFile The file name containing the CSV column info.
+   * @param comment The table's comment.
+   */
+  public CreateTable(
+      String url,
+      boolean ignoreVersions,
+      String metalake,
+      String catalog,
+      String schema,
+      String table,
+      String columnFile,
+      String comment) {
+    super(url, ignoreVersions);
+    this.metalake = metalake;
+    this.catalog = catalog;
+    this.schema = schema;
+    this.table = table;
+    this.columnFile = columnFile;
+    this.comment = comment;
+  }
+
+  /** Create a new table. */
+  @Override
+  public void handle() {
+    try {
+      NameIdentifier tableName = NameIdentifier.of(schema, table);
+      GravitinoClient client = buildClient(metalake);
+      ReadTableCSV readTableCSV = new ReadTableCSV();
+      Map<String, List<String>> tableData = readTableCSV.parse(columnFile);
+      Column[] columns = readTableCSV.columns(tableData);
+
+      client.loadCatalog(catalog).asTableCatalog().createTable(tableName, 
columns, comment, null);
+    } catch (NoSuchMetalakeException err) {

Review Comment:
   Done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to