Subject: | populate inserts only rows that exist in first row |
http://blogs.perl.org/users/wolfgang_kinkeldei/2011/09/dbixclass-populate-gocha.html
$foo_rs->populate( [ { a=>1 }, { a=>2, b=>3} ] );
# select * from foo;
a | b
1 | undef
2 | undef