From: Matt S Trout Date: Tue, 1 Oct 2019 02:29:37 +0000 (+0000) Subject: make pod tests happy X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FQ-Branch.git;a=commitdiff_plain;h=3001f09746dcc5164c040fcbb5d87d454f61c726 make pod tests happy --- diff --git a/lib/SQL/Abstract/ExtraClauses.pm b/lib/SQL/Abstract/ExtraClauses.pm index cb64a5e..e0b2532 100644 --- a/lib/SQL/Abstract/ExtraClauses.pm +++ b/lib/SQL/Abstract/ExtraClauses.pm @@ -337,3 +337,29 @@ sub _expand_clause_setop { } 1; + +=head1 NAME + +SQL::Abstract::ExtraClauses - new/experimental additions to L + +=head1 SYNOPSIS + + my $sqla = SQL::Abstract->new; + SQL::Abstract::ExtraClauses->apply_to($sqla); + +=head1 METHODS + +=head2 apply_to + +Applies the plugin to an L object. + +=head2 cb + +For plugin authors, creates a callback to call a method on the plugin. + +=head2 sqla + +Available only during plugin callback executions, contains the currently +active L object. + +=cut