singhpk234 commented on code in PR #3584:
URL: https://github.com/apache/polaris/pull/3584#discussion_r2750603983
##########
persistence/relational-jdbc/src/main/java/org/apache/polaris/persistence/relational/jdbc/QueryGenerator.java:
##########
@@ -50,6 +50,15 @@ public record PreparedBatchQuery(String sql,
List<List<Object>> parametersList)
/** A container for the query fragment SQL string and the ordered parameter
values. */
record QueryFragment(String sql, List<Object> parameters) {}
+ /**
+ * Returns the fully-qualified table name used by relational-jdbc queries.
+ *
+ * @param tableName Target table name.
+ */
+ public static String fullyQualifiedTableName(@Nonnull String tableName) {
+ return getFullyQualifiedTableName(tableName);
+ }
Review Comment:
I am confused, why create a new public function ? can we not have private
function itself made public ?
--
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]