Subject: | Specifying a null or not null condition causes uninitialized value warnings |
If a set or rule contains a null or not null condition, the following warning is generated for each row queried in the table:
Use of uninitialized value $_ in substitution (s///) at <path to>/lib/DBIx/Class/Fixtures.pm line 816.
Example config:
{
"might_have": {
"fetch": 0
},
"has_many": {
"fetch": 0
},
"sets": [{
"class": "Artist",
"cond": { "me.name": { "!=": null } },
"quantity": "all",
"fetch": [{
"rel": "cds"
}]
}]
}