File Coverage

lib/Parse/Dia/SQL/Output/Ingres.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Parse::Dia::SQL::Output::Ingres;
2              
3             # $Id: Ingres.pm,v 1.2 2009/03/02 13:41:39 aff Exp $
4              
5             =pod
6              
7             =head1 NAME
8              
9             Parse::Dia::SQL::Output::Ingres - Create SQL for Ingres.
10              
11             =head1 SEE ALSO
12              
13             Parse::Dia::SQL::Output
14              
15             =cut
16              
17 3     3   3281 use warnings;
  3         4  
  3         81  
18 3     3   10 use strict;
  3         4  
  3         56  
19              
20 3     3   10 use Data::Dumper;
  3         5  
  3         130  
21 3     3   11 use File::Spec::Functions qw(catfile);
  3         4  
  3         152  
22              
23 3     3   10 use lib q{lib};
  3         35  
  3         14  
24 3     3   216 use base q{Parse::Dia::SQL::Output}; # extends
  3         2  
  3         295  
25              
26             require Parse::Dia::SQL::Logger;
27             require Parse::Dia::SQL::Const;
28              
29             =head2 new
30              
31             The constructor. Arguments:
32              
33             =cut
34              
35             sub new {
36             my ( $class, %param ) = @_;
37             my $self = {};
38              
39             # Set defaults for ingres
40             $param{db} = q{ingres};
41             $param{object_name_max_length} = $param{object_name_max_length} || 30;
42             $param{end_of_statement} = $param{end_of_statement} || "\n\\g";
43              
44             $self = $class->SUPER::new(%param);
45             bless( $self, $class );
46              
47             return $self;
48             }
49              
50             =head2 _get_drop_index_sql
51              
52             create drop index for index on table with given name.
53              
54             drop index idx_foo for ingres
55              
56             =cut
57              
58             sub _get_drop_index_sql {
59             my ( $self, $tablename, $indexname ) = @_;
60             return qq{drop index $indexname for }
61             . $self->{db}
62             . $self->{end_of_statement}
63             . $self->{newline};
64             }
65              
66              
67              
68             1;
69              
70             __END__