return @found;
}
-sub compare_relationship_keys {
- carp 'compare_relationship_keys is a private method, stop calling it';
- my $self = shift;
- $self->_compare_relationship_keys (@_);
-}
-
# Returns true if both sets of keynames are the same, false otherwise.
sub _compare_relationship_keys {
# my ($self, $keys1, $keys2) = @_;
}
}
-sub pk_depends_on {
- carp 'pk_depends_on is a private method, stop calling it';
- my $self = shift;
- $self->_pk_depends_on (@_);
-}
-
# Determines whether a relation is dependent on an object from this source
# having already been inserted. Takes the name of the relationship and a
# hashref of columns of the related object.
return 1;
}
-sub resolve_condition {
- carp 'resolve_condition is a private method, stop calling it';
- my $self = shift;
- $self->_resolve_condition (@_);
-}
-
our $UNRESOLVABLE_CONDITION = \Literal(SQL => '1 = 0');
${$UNRESOLVABLE_CONDITION}->{'DBIx::Class::ResultSource.UNRESOLVABLE'} = 1;