DBZ-3500 Added Javadoc

This commit is contained in:
Jiri Pechanec 2021-05-20 06:15:57 +02:00 committed by Gunnar Morling
parent cbaf13841f
commit ba581ed323

View File

@ -1473,6 +1473,13 @@ public <T extends DatabaseSchema<TableId>> Object[] rowToArray(Table table, T da
return row;
}
/**
* Converts a table id into a string with all components of the id quoted so non-alphanumeric
* characters are properly handled.
*
* @param tableId
* @return formatted string
*/
public String quotedTableIdString(TableId tableId) {
return tableId.toDoubleQuotedString();
}