mchades commented on code in PR #9016:
URL: https://github.com/apache/gravitino/pull/9016#discussion_r2494072713
##########
lance/lance-common/src/main/java/org/apache/gravitino/lance/common/ops/LanceTableOperations.java:
##########
@@ -58,10 +59,27 @@ CreateTableResponse createTable(
Map<String, String> tableProperties,
byte[] arrowStreamBody);
+ /**
+ * Create an new table without schema.
+ *
+ * @param tableId table ids are in the format of
"{namespace}{delimiter}{table_name}"
+ * @param mode it can be CREATE, OVERWRITE, or EXIST_OK
+ * @param delimiter the delimiter used in the namespace
+ * @param tableLocation the location where the table data will be stored
+ * @param tableProperties the properties of the table
+ * @return the response of the create table operation
+ */
+ CreateEmptyTableResponse createEmptyTable(
+ String tableId,
+ CreateTableRequest.ModeEnum mode,
Review Comment:
createEmptyTable does not have `mode` parameter
--
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]