mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
* fix: fix null pointer exception on date array column comparison Follow up to https://github.com/typeorm/typeorm/pull/11269 which was calling Array.map without validating if the array was null. Now only normalize if both values (entity and database) are not null. Closes: https://github.com/typeorm/typeorm/issues/11514 * clean test