Skip to content

Commit

Permalink
show method signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jan 28, 2018
1 parent c2db7d1 commit a688169
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/SQL/Abstract/Pg.pm
Expand Up @@ -155,6 +155,8 @@ used by L<Mojo::Pg>.
=head1 INSERT
$abstract->insert($table, \@values || \%fieldvals, \%options);
Additional C<INSERT> query features.
=head2 ON CONFLICT
Expand Down Expand Up @@ -182,13 +184,13 @@ This includes operations commonly referred to as C<upsert>.
=head1 SELECT
$abstract->select($source, $fields, $where, $order);
$abstract->select($source, $fields, $where, \%options);
Additional C<SELECT> query features.
=head2 ORDER BY
$abstract->select($source, $fields, $where, $order);
$abstract->select($source, $fields, $where, \%options);
Alternatively to the C<$order> argument accepted by L<SQL::Abstract> you can now
also pass a hash reference with various options. This includes C<order_by>,
which takes the same values as the C<$order> argument.
Expand Down

0 comments on commit a688169

Please sign in to comment.