From: Rafael Kitover Date: Thu, 31 Dec 2009 20:08:30 +0000 (+0000) Subject: POD touchups X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8d56944855eaaaa09ee8563ec0700d7e1b54337a;p=dbsrgits%2FDBIx-Class-Historic.git POD touchups --- diff --git a/lib/DBIx/Class/Storage/DBI.pm b/lib/DBIx/Class/Storage/DBI.pm index 22477fe..7be2455 100644 --- a/lib/DBIx/Class/Storage/DBI.pm +++ b/lib/DBIx/Class/Storage/DBI.pm @@ -2521,8 +2521,11 @@ sub lag_behind_master { L uses L names as table aliases in queries. -This hook is to allow specific C drivers to change the way these -aliases are named. +This hook is to allow specific L 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 diff --git a/lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm b/lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm index 0f0c97b..3379ffc 100644 --- a/lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm +++ b/lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm @@ -282,7 +282,7 @@ L uses L names as table aliases in queries. Unfortunately, Oracle doesn't support identifiers over 30 chars in length, so -if the L name is shortened here if necessary. +the L name is shortened here if necessary. See L.