You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The validate_presence_of_columns, validate_absence_of_columns, and validate_schema methods currently throw exceptions when they fail and return nothing otherwise.
It'd be nice to add a flag for these methods to return boolean values. That'd make it easier for folks to add schema safe append logic like this:
The
validate_presence_of_columns
,validate_absence_of_columns
, andvalidate_schema
methods currently throw exceptions when they fail and return nothing otherwise.It'd be nice to add a flag for these methods to return boolean values. That'd make it easier for folks to add schema safe append logic like this:
Right now,
quinn.validate_schema
will returnNone
, even if the schema match, andNone
is falsy in a boolean context.The text was updated successfully, but these errors were encountered: