blib/lib/SQL/Translator/Generator/DDL/MySQL.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 4 | 4 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 2 | 100.0 |
pod | 0 | 1 | 0.0 |
total | 6 | 7 | 85.7 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package SQL::Translator::Generator::DDL::MySQL; | ||||||
2 | |||||||
3 | =head1 NAME | ||||||
4 | |||||||
5 | SQL::Translator::Generator::DDL::MySQL - A Moo based MySQL DDL generation | ||||||
6 | engine. | ||||||
7 | |||||||
8 | =head1 DESCRIPTION | ||||||
9 | |||||||
10 | I |
||||||
11 | |||||||
12 | =cut | ||||||
13 | |||||||
14 | 12 | 12 | 491 | use Moo; | |||
12 | 9481 | ||||||
12 | 91 | ||||||
15 | |||||||
16 | has quote_chars => ( is => 'ro', default => sub { +[qw(` `)] } ); | ||||||
17 | |||||||
18 | with 'SQL::Translator::Generator::Role::Quote'; | ||||||
19 | |||||||
20 | 796 | 796 | 0 | 1887 | sub name_sep { q(.) } | ||
21 | |||||||
22 | 1; |