diqiu50 commented on code in PR #8188:
URL: https://github.com/apache/gravitino/pull/8188#discussion_r2302690815
##########
trino-connector/trino-connector/src/main/java/org/apache/gravitino/trino/connector/catalog/hive/HiveMetadataAdapter.java:
##########
@@ -249,4 +251,14 @@ public ConnectorTableMetadata
getTableMetadata(GravitinoTable gravitinoTable) {
properties,
Optional.ofNullable(gravitinoTable.getComment()));
}
+
+ /**
+ * Get the column handle name that will generate row IDs for the merge
operation.
+ *
+ * @return the column handle name for row IDs
+ */
+ @Override
+ public String getMergeRowIdColumnHandleName() {
+ return MERGE_ROW_ID;
Review Comment:
I think providing a common implementation is enough. Either retrieve it from
the internal connector, or generate it uniformly according to our own rules.
--
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]