File Coverage

blib/lib/SQL/Statement/Function/ByName/DAY.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package SQL::Statement::Function::ByName::DAY;
2              
3 1     1   2725 use 5.010001;
  1         3  
4 1     1   6 use strict;
  1         2  
  1         20  
5 1     1   5 use warnings;
  1         2  
  1         25  
6              
7 1     1   476 use SQL::Statement::Function::ByName::DAYOFMONTH;
  1         3  
  1         85  
8              
9             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
10             our $DATE = '2022-12-12'; # DATE
11             our $DIST = 'SQL-Statement-Functions-Date'; # DIST
12             our $VERSION = '0.050'; # VERSION
13              
14             *SQL_FUNCTION_DAY = \&SQL::Statement::Function::ByName::DAYOFMONTH::SQL_FUNCTION_DAYOFMONTH;
15              
16             1;
17             # ABSTRACT: Synonym for DAYOFMONTH() SQL function
18              
19             __END__