Revision history for SQL::Abstract
+ - Add error checking on "profile" for SQLA::Tree
- Hide bulk inserts from DBIx::Class
- Highlight transaction keywords
- Highlight HAVING
my $args = shift || {};
my $profile = delete $args->{profile} || 'none';
+
+ die "No such profile '$profile'!" unless exists $profiles{$profile};
+
my $data = $merger->merge( $profiles{$profile}, $args );
bless $data, $class