[DBIx-Class-Devel] [dbix-class] Added support for handling Class::DBI::Column in CDBICompat (#52)

Peter Rabbitson notifications at github.com
Thu Jul 24 02:35:26 GMT 2014


Looks good, merged at https://github.com/dbsrgits/dbix-class/commit/7ad80222. The only adjustment (and corresponding boilerplate) was:
```
         my($ro_meth, $wo_meth);
-        if (ref $col && $col->isa('Class::DBI::Column')){
+        if (defined blessed $col and $col->isa('Class::DBI::Column')) {
             $ro_meth = $col->accessor;
```

Cheers and please keep them coming ;)

---
Reply to this email directly or view it on GitHub:
https://github.com/dbsrgits/dbix-class/pull/52#issuecomment-49961156
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.scsys.co.uk/pipermail/dbix-class-devel/attachments/20140723/f1299cfc/attachment.htm>


More information about the DBIx-Class-Devel mailing list