X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FResultSource.pm;h=2287bef26f223a0a546e5b3b10693414ac0498ec;hb=ceb52d1911c9cad984a90bcd8debc8a166a9c054;hp=0cc00743cb5738fa47ed0b554b80db738f8fd5b0;hpb=26a29815556e4d9d292b32e23aa5364affd1318a;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/ResultSource.pm b/lib/DBIx/Class/ResultSource.pm index 0cc0074..2287bef 100644 --- a/lib/DBIx/Class/ResultSource.pm +++ b/lib/DBIx/Class/ResultSource.pm @@ -121,7 +121,7 @@ L. Set this to a true or false value (not C) to explicitly specify if this column contains numeric data. This controls how set_column decides whether to consider a column dirty after an update: if -C is true a numeric comparison C<< <=> >> will take place +C is true a numeric comparison C<< != >> will take place instead of the usual C If not specified the storage class will attempt to figure this out on @@ -1135,7 +1135,7 @@ sub _resolve_join { my $rel_src = $self->related_source($join); return [ { $as => $rel_src->from, - -result_source => $rel_src, + -source_handle => $rel_src->handle, -join_type => $type, -join_path => [@$jpath, $join], -alias => $as,