Commits


Miguel E. Hernández Cuervo authored and GitHub committed 8a5fc3cd17b
AVRO-3263: Fix warning in Perl encoder when validating a long field (#1422) * AVRO-3258: Fix warning in Perl encoder when validating a long field - Disable warnings in the limited scope of "long" validation that uses pack and unpack. It is unnecessary as warnings don't affect the validation outcome and in some scenarios this validation is expected to fail. - Add test cases to validate the fix * AVRO-3258: Fix warning in Perl encoder when validating a long field - Check explicitly and return early if $data is undefined.