DBZ-5936 Add Javadoc

This commit is contained in:
Praveen Burgu 2022-12-19 23:03:12 -08:00 committed by Jiri Pechanec
parent fff4719fb1
commit 48e1db8fc3

View File

@ -12,6 +12,13 @@
import java.util.Map;
import java.util.Optional;
/**
* Helper that returns placeholder values for unchanged toasted columns.
*
* The configured placeholder is converted to a data type that is compatible with the given column type.
*
* @author Praveen Burgu
*/
public class UnchangedToastedPlaceholder {
private final Map<Object, Object> placeholderValues = new HashMap<Object, Object>();