[Dbix-class] Re: Reusing defined columns (inheritance?)

Dmitry Latin dim0xff at gmail.com
Fri Dec 27 10:11:02 GMT 2013


Hmmm.

Seems, that it is because of DBIC::ResultSourceProxy::Table::table().

Looks like columns created, but not copied into result class:

package D;
use base qw/ A B C /;

__PACKAGE__->table('tbl');


D will have only columns from A.

Columns from B and C will not copied into D.

-- 
//wbr, Dmitry L.



More information about the DBIx-Class mailing list