Backout sybase changes
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / AutoCast.pm
index d854c16..850015b 100644 (file)
@@ -29,10 +29,6 @@ converted to:
 
   CAST(? as $mapped_type)
 
-This option can also be enabled in L<DBIx::Class::Storage::DBI/connect_info> as:
-
-  on_connect_call => ['set_auto_cast']
-
 =cut
 
 sub _prep_for_execute {
@@ -64,26 +60,6 @@ sub _prep_for_execute {
   return ($sql, $bind);
 }
 
-=head2 connect_call_set_auto_cast
-
-Executes:
-
-  $schema->storage->auto_cast(1);
-
-on connection.
-
-Used as:
-
-    on_connect_call => ['set_auto_cast']
-
-in L<DBIx::Class::Storage::DBI/connect_info>.
-
-=cut
-
-sub connect_call_set_auto_cast {
-  my $self = shift;
-  $self->auto_cast(1);
-}
 
 =head1 AUTHOR