File Coverage

lib/DBIx/SchemaChecksum/Driver/mysql.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package DBIx::SchemaChecksum::Driver::mysql;
2 1     1   889 use utf8;
  1         2  
  1         4  
3              
4             # ABSTRACT: MySQL driver for DBIx::SchemaChecksum
5              
6 1     1   29 use namespace::autoclean;
  1         2  
  1         5  
7 1     1   51 use Moose::Role;
  1         2  
  1         5  
8              
9             around '_build_schemadump_table' => sub {
10             my $orig = shift;
11             my ($self,$schema,$table) = @_;
12              
13             die "Sorry, but mysql isn't supported at the moment, because it's introspection seems to be broken.\n";
14             };
15              
16             1;
17              
18             __END__
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             DBIx::SchemaChecksum::Driver::mysql - MySQL driver for DBIx::SchemaChecksum
27              
28             =head1 VERSION
29              
30             version 1.102
31              
32             =head1 DESCRIPTION
33              
34             MySQL is B<not> supported!
35              
36             =head1 AUTHORS
37              
38             =over 4
39              
40             =item *
41              
42             Thomas Klausner <domm@cpan.org>
43              
44             =item *
45              
46             MaroÅ¡ Kollár <maros@cpan.org>
47              
48             =item *
49              
50             Klaus Ita <koki@worstofall.com>
51              
52             =back
53              
54             =head1 COPYRIGHT AND LICENSE
55              
56             This software is copyright (c) 2012 by Thomas Klausner, MaroÅ¡ Kollár, Klaus Ita.
57              
58             This is free software; you can redistribute it and/or modify it under
59             the same terms as the Perl 5 programming language system itself.
60              
61             =cut