Modularize validate
method for multi-table synthesizers
#2291
Labels
feature request
Request for a new feature
validate
method for multi-table synthesizers
#2291
Problem Description
Currently, we cannot easily extend validation for multi-table synthesizers because most of the functionality is contained in the public
BaseMultiTableSynthesizer.validate
method. We should modularize thevalidate
method so it can be extended more easily.Expected behavior
In order to support additional validation functionality, we should move the existing validation functionality out of the
validate
method and into the helper method_validate
. Thevalidate
method should just call_validate
.Additionally, in the
preprocess
method, validation of the data should occur before the_transform_helper
method is called on the data.The text was updated successfully, but these errors were encountered: