L<DBIx::Class> uses L<DBIx::Class::Relationship> names as table aliases in
queries.
-This hook is to allow specific C<Storage> drivers to change the way these
-aliases are named.
+This hook is to allow specific L<DBIx::Class::Storage> drivers to change the
+way these aliases are named.
+
+The default behavior is C<"$relname_$join_count" if $join_count > 1>, otherwise
+C<"$relname">.
=cut
queries.
Unfortunately, Oracle doesn't support identifiers over 30 chars in length, so
-if the L<DBIx::Class::Relationship> name is shortened here if necessary.
+the L<DBIx::Class::Relationship> name is shortened here if necessary.
See L<DBIx::Class::Storage/"relname_to_table_alias">.