package Fey::SQL::Pg::Delete; BEGIN { $Fey::SQL::Pg::Delete::VERSION = '0.005'; } # ABSTRACT: Generate PostgreSQL specific DELETE statements use Moose; use namespace::autoclean; use Moose; use MooseX::StrictConstructor; extends 'Fey::SQL::Delete'; with 'Fey::SQL::Pg::Role::Returning'; around sql => sub { my $orig = shift; my ($self, $dbh) = @_; return ( join ' ', $self->$orig($dbh), $self->returning_clause($dbh) ); }; __PACKAGE__->meta->make_immutable; 1; __END__ =pod =encoding utf-8 =head1 NAME Fey::SQL::Pg::Delete - Generate PostgreSQL specific DELETE statements =head1 DESCRIPTION Specific PostgreSQL extensions to C statements. =head1 EXTENSIONS =head2 DELETE ... RETURNING Allows you to perform a C in L. =head1 AUTHOR Oliver Charles =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2010 by Oliver Charles. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut