Changes synced up with everything that has happened, and deprecation notices added...
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage.pm
index 47b660f..f98001b 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 use base qw/DBIx::Class/;
 
 use Scalar::Util qw/weaken/;
-use Carp::Clan qw/DBIx::Class/;
+use Carp::Clan qw/^DBIx::Class/;
 
 __PACKAGE__->load_components(qw/AccessorGroup/);
 __PACKAGE__->mk_group_accessors('simple' => qw/debug debugobj schema/);
@@ -388,7 +388,9 @@ sub select_single { die "Virtual method!" }
 
 =head2 columns_info_for
 
-Returns database type info for the given table's columns.
+Returns metadata for the given source's columns.  This
+is *deprecated*, and will be removed before 1.0.  You should
+be specifying the metadata yourself if you need it.
 
 =cut