-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathDiff.pm
More file actions
785 lines (611 loc) · 23.4 KB
/
Diff.pm
File metadata and controls
785 lines (611 loc) · 23.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
package SQL::Translator::Diff;
## SQLT schema diffing code
use strict;
use warnings;
use Data::Dumper;
use Carp::Clan qw/^SQL::Translator/;
use SQL::Translator::Schema::Constants;
use Sub::Quote qw(quote_sub);
use Moo;
has ignore_index_names => (is => 'rw',);
has ignore_constraint_names => (is => 'rw',);
has ignore_view_sql => (is => 'rw',);
has ignore_proc_sql => (is => 'rw',);
has output_db => (is => 'rw',);
has source_schema => (is => 'rw',);
has target_schema => (is => 'rw',);
has case_insensitive => (is => 'rw',);
has no_batch_alters => (is => 'rw',);
has ignore_missing_methods => (is => 'rw',);
has sqlt_args => (
is => 'rw',
lazy => 1,
default => quote_sub '{}',
);
has tables_to_drop => (
is => 'rw',
lazy => 1,
default => quote_sub '[]',
);
has tables_to_create => (
is => 'rw',
lazy => 1,
default => quote_sub '[]',
);
has table_diff_hash => (
is => 'rw',
lazy => 1,
default => quote_sub '{}',
);
has triggers_to_drop => (
is => 'rw',
lazy => 1,
default => quote_sub '[]',
);
has triggers_to_modify => (
is => 'rw',
lazy => 1,
default => quote_sub '[]',
);
has triggers_to_create => (
is => 'rw',
lazy => 1,
default => quote_sub '[]',
);
has procedures_to_drop => (
is => 'rw',
lazy => 1,
default => quote_sub '[]',
);
has procedures_to_modify => (
is => 'rw',
lazy => 1,
default => quote_sub '[]',
);
has procedures_to_create => (
is => 'rw',
lazy => 1,
default => quote_sub '[]',
);
my @diff_arrays = qw/
tables_to_drop
tables_to_create
triggers_to_drop
triggers_to_modify
triggers_to_create
procedures_to_drop
procedures_to_modify
procedures_to_create
/;
my @diff_hash_keys = qw/
constraints_to_create
constraints_to_drop
indexes_to_create
indexes_to_drop
fields_to_create
fields_to_alter
fields_to_rename
fields_to_drop
table_options
table_renamed_from
/;
sub schema_diff {
# use Data::Dumper;
## we are getting instructions on how to turn the source into the target
## source == original, target == new (hmm, if I need to comment this, should I rename the vars again ??)
## _schema isa SQL::Translator::Schema
## _db is the name of the producer/db it came out of/into
## results are formatted to the source preferences
my ($source_schema, $source_db, $target_schema, $output_db, $options) = @_;
$options ||= {};
my $obj = SQL::Translator::Diff->new({
%$options,
source_schema => $source_schema,
target_schema => $target_schema,
output_db => $output_db
});
$obj->compute_differences->produce_diff_sql;
}
my $warned_dep;
sub BUILD {
my ($self, $args) = @_;
for my $deprecated (qw/producer_options producer_args/) {
if ($args->{$deprecated}) {
carp
"$deprecated is deprecated -- it does not go straight to the producer, it goes to the internal sqlt object. Please use sqlt_args, which reflects how it's used"
unless $warned_dep++;
$self->sqlt_args({ %{ $args->{$deprecated} }, %{ $self->sqlt_args } });
}
}
if (!$self->output_db) {
$self->output_db($args->{source_db});
}
}
sub compute_differences {
my ($self) = @_;
my $target_schema = $self->target_schema;
my $source_schema = $self->source_schema;
my $producer_class = "SQL::Translator::Producer::@{[$self->output_db]}";
eval "require $producer_class";
die $@ if $@;
if (my $preprocess = $producer_class->can('preprocess_schema')) {
$preprocess->($source_schema);
$preprocess->($target_schema);
}
my %src_tables_checked = ();
my %src_tables_deleted = ();
my @tar_tables = sort { $a->qualified_name cmp $b->qualified_name } $target_schema->get_tables;
## do original/source tables exist in target?
for my $tar_table (@tar_tables) {
my $tar_table_name = $tar_table->qualified_name;
my $src_table;
$self->table_diff_hash->{$tar_table_name} = { map { $_ => [] } @diff_hash_keys };
if (my $old_name = $tar_table->extra('renamed_from')) {
$src_table = $source_schema->get_table($old_name, $self->case_insensitive);
if ($src_table) {
$self->table_diff_hash->{$tar_table_name}{table_renamed_from} = [ [ $src_table, $tar_table ] ];
} else {
delete $tar_table->extra->{renamed_from};
carp qq#Renamed table can't find old table "$old_name" for renamed table\n#;
}
} else {
$src_table = $source_schema->get_table($tar_table_name, $self->case_insensitive);
}
unless ($src_table) {
## table is new
## add table(s) later.
push @{ $self->tables_to_create }, $tar_table;
next;
}
my $src_table_name = $src_table->qualified_name;
$src_table_name = lc $src_table_name if $self->case_insensitive;
$src_tables_checked{$src_table_name} = 1;
$self->diff_table_options($src_table, $tar_table);
## Compare fields, their types, defaults, sizes etc etc
$self->diff_table_fields($src_table, $tar_table);
$self->diff_table_indexes($src_table, $tar_table);
$self->diff_table_constraints($src_table, $tar_table);
} # end of target_schema->get_tables loop
for my $src_table ($source_schema->get_tables) {
my $src_table_name = $src_table->qualified_name;
$src_table_name = lc $src_table_name if $self->case_insensitive;
next if $src_tables_checked{$src_table_name};
push @{ $self->tables_to_drop}, $src_table;
$src_tables_deleted{$src_table_name} = 1;
}
my %src_triggers_checked = ();
my @tgt_triggers = sort { $a->name cmp $b->name } $target_schema->get_triggers;
for my $tgt_trigger ( @tgt_triggers ) {
my $name = $tgt_trigger->name;
my $src_trigger = $source_schema->get_trigger( $name, $self->case_insensitive );
unless ( $src_trigger ) {
push @{$self->triggers_to_create}, $tgt_trigger;
next;
}
my $src_trigger_name = $src_trigger->name;
$src_trigger_name = lc $src_trigger_name if $self->case_insensitive;
$src_triggers_checked{$src_trigger_name} = 1;
# Compare trigger
push @{$self->triggers_to_modify}, $tgt_trigger
unless $src_trigger->equals( $tgt_trigger );
}
for my $src_trigger ( $source_schema->get_triggers ) {
my $name = $src_trigger->name;
$name = lc $name if $self->case_insensitive;
my $src_table_name = $src_trigger->on_table;
$src_table_name = lc $src_table_name if $self->case_insensitive;
push @{ $self->triggers_to_drop }, $src_trigger
unless $src_triggers_checked{$name} or $src_tables_deleted{$src_table_name};
}
my %src_procedures_checked = ();
my @tgt_procedures = sort { $a->name cmp $b->name } $target_schema->get_procedures;
for my $tgt_procedure ( @tgt_procedures ) {
my $name = $tgt_procedure->name;
my $src_procedure = $source_schema->get_procedure( $name, $self->case_insensitive );
unless ( $src_procedure ) {
push @{$self->procedures_to_create}, $tgt_procedure;
next;
}
my $src_procedure_name = $src_procedure->name;
$src_procedure_name = lc $src_procedure_name if $self->case_insensitive;
$src_procedures_checked{$src_procedure_name} = 1;
# Compare SQL in procedure declaration
next unless $src_procedure->sql ne $tgt_procedure->sql;
push @{$self->procedures_to_modify}, $tgt_procedure;
}
for my $src_procedure ( $source_schema->get_procedures ) {
my $name = $src_procedure->name;
$name = lc $name if $self->case_insensitive;
push @{ $self->procedures_to_drop}, $src_procedure
unless $src_procedures_checked{$name};
}
return $self;
}
sub produce_diff_sql {
my ($self) = @_;
my $target_schema = $self->target_schema;
my $source_schema = $self->source_schema;
my $tar_name = $target_schema->name;
my $src_name = $source_schema->name;
my $producer_class = "SQL::Translator::Producer::@{[$self->output_db]}";
eval "require $producer_class";
die $@ if $@;
# Map of name we store under => producer method name
my %func_map = (
constraints_to_create => 'alter_create_constraint',
constraints_to_drop => 'alter_drop_constraint',
indexes_to_create => 'alter_create_index',
indexes_to_drop => 'alter_drop_index',
fields_to_create => 'add_field',
fields_to_alter => 'alter_field',
fields_to_rename => 'rename_field',
fields_to_drop => 'drop_field',
table_options => 'alter_table',
table_renamed_from => 'rename_table',
);
my @diffs;
if (!$self->no_batch_alters
&& (my $batch_alter = $producer_class->can('batch_alter_table'))) {
# Good - Producer supports batch altering of tables.
foreach my $table (sort keys %{ $self->table_diff_hash }) {
my $tar_table = $target_schema->get_table($table)
|| $source_schema->get_table($table);
push @diffs,
$batch_alter->(
$tar_table,
{
map { $func_map{$_} => $self->table_diff_hash->{$table}{$_} } keys %func_map
},
$self->sqlt_args
);
}
} else {
# If we have any table renames we need to do those first;
my %flattened_diffs;
foreach my $table (sort keys %{ $self->table_diff_hash }) {
my $table_diff = $self->table_diff_hash->{$table};
for (@diff_hash_keys) {
push(@{ $flattened_diffs{ $func_map{$_} } ||= [] }, @{ $table_diff->{$_} });
}
}
push @diffs, map({
if (@{ $flattened_diffs{$_} || [] }) {
my $meth = $producer_class->can($_);
$meth
? map {
map { $_ ? "$_" : () } $meth->((ref $_ eq 'ARRAY' ? @$_ : $_), $self->sqlt_args);
} @{ $flattened_diffs{$_} }
: $self->ignore_missing_methods ? "-- $producer_class cant $_"
: die "$producer_class cant $_";
} else {
()
}
} qw/rename_table
alter_drop_constraint
alter_drop_index
drop_field
add_field
alter_field
rename_field
alter_create_index
alter_create_constraint
alter_table/),
;
}
if (my @tables = @{ $self->tables_to_create }) {
my $translator = SQL::Translator->new(
producer_type => $self->output_db,
add_drop_table => 0,
no_comments => 1,
# TODO: sort out options
%{ $self->sqlt_args }
);
$translator->producer_args->{no_transaction} = 1;
my $schema = $translator->schema;
$schema->add_table($_) for @tables;
unshift @diffs,
# Remove begin/commit here, since we wrap everything in one.
grep { $_ !~ /^(?:COMMIT|START(?: TRANSACTION)?|BEGIN(?: TRANSACTION)?)/ }
$producer_class->can('produce')->($translator);
}
if (my @tables_to_drop = @{ $self->{tables_to_drop} || [] }) {
my $meth = $producer_class->can('drop_table');
push @diffs,
$meth ? (map { $meth->($_, $self->sqlt_args) } @tables_to_drop)
: $self->ignore_missing_methods ? "-- $producer_class cant drop_table"
: die "$producer_class cant drop_table";
}
if (my @triggers = @{ $self->triggers_to_create } ) {
my $translator = SQL::Translator->new(
producer_type => $self->output_db,
add_drop_table => 0,
no_comments => 1,
# TODO: sort out options
%{ $self->producer_args }
);
$translator->producer_args->{no_transaction} = 1;
my $schema = $translator->schema;
$schema->add_trigger($_) for @triggers;
push @diffs,
# Remove begin/commit here, since we wrap everything in one.
grep { $_ !~ /^(?:COMMIT|START(?: TRANSACTION)?|BEGIN(?: TRANSACTION)?)/ } $producer_class->can('produce')->($translator);
}
if (my @triggers_to_drop = @{ $self->{triggers_to_drop} || []} ) {
my $meth = $producer_class->can('drop_trigger');
push @diffs, $meth ? ( map { $meth->($_, $self->producer_args) } @triggers_to_drop)
: $self->ignore_missing_methods
? "-- $producer_class cant drop_trigger"
: die "$producer_class cant drop_trigger";
}
if (my @triggers = @{ $self->triggers_to_modify } ) {
my $translator = SQL::Translator->new(
producer_type => $self->output_db,
add_drop_table => 1,
no_comments => 1,
# TODO: sort out options
%{ $self->producer_args }
);
$translator->producer_args->{no_transaction} = 1;
my $schema = $translator->schema;
$schema->add_trigger($_) for @triggers;
push @diffs,
# Remove begin/commit here, since we wrap everything in one.
grep { $_ !~ /^(?:COMMIT|START(?: TRANSACTION)?|BEGIN(?: TRANSACTION)?)/ } $producer_class->can('produce')->($translator);
}
if (my @procedures = @{ $self->procedures_to_create } ) {
my $translator = SQL::Translator->new(
producer_type => $self->output_db,
add_drop_table => 0,
no_comments => 1,
# TODO: sort out options
%{ $self->producer_args }
);
$translator->producer_args->{no_transaction} = 1;
my $schema = $translator->schema;
$schema->add_procedure($_) for @procedures;
push @diffs,
# Remove begin/commit here, since we wrap everything in one.
grep { $_ !~ /^(?:COMMIT|START(?: TRANSACTION)?|BEGIN(?: TRANSACTION)?)/ } $producer_class->can('produce')->($translator);
}
if (my @procedures_to_drop = @{ $self->{procedures_to_drop} || []} ) {
my $meth = $producer_class->can('drop_procedure');
push @diffs, $meth ? ( map { $meth->($_, $self->producer_args) } @procedures_to_drop)
: $self->ignore_missing_methods
? "-- $producer_class cant drop_procedure"
: die "$producer_class cant drop_procedure";
}
if (my @procedures_to_modify = @{ $self->{procedures_to_modify} || []} ) {
my $translator = SQL::Translator->new(
producer_type => $self->output_db,
add_drop_table => 1,
no_comments => 1,
# TODO: sort out options
%{ $self->producer_args }
);
$translator->producer_args->{no_transaction} = 1;
my $schema = $translator->schema;
$schema->add_procedure($_) for @procedures_to_modify;
push @diffs,
# Remove begin/commit here, since we wrap everything in one.
grep { $_ !~ /^(?:COMMIT|START(?: TRANSACTION)?|BEGIN(?: TRANSACTION)?)/ } $producer_class->can('produce')->($translator);
}
if (@diffs) {
unshift @diffs, "BEGIN";
push @diffs, "\nCOMMIT";
} else {
@diffs = ("-- No differences found");
}
if (@diffs) {
if ($self->output_db !~ /^(?:MySQL|SQLite|PostgreSQL)$/) {
unshift(@diffs, "-- Output database @{[$self->output_db]} is untested/unsupported!!!");
}
my @return = map { $_ ? ($_ =~ /;\s*\z/xms ? $_ : "$_;\n\n") : "\n" }
("-- Convert schema '$src_name' to '$tar_name':", @diffs);
return wantarray ? @return : join('', @return);
}
return undef;
}
sub diff_table_indexes {
my ($self, $src_table, $tar_table) = @_;
my (%checked_indices);
INDEX_CREATE:
for my $i_tar ($tar_table->get_indices) {
for my $i_src ($src_table->get_indices) {
if ($i_tar->equals($i_src, $self->case_insensitive, $self->ignore_index_names)) {
$checked_indices{$i_src} = 1;
next INDEX_CREATE;
}
}
push @{ $self->table_diff_hash->{$tar_table}{indexes_to_create} }, $i_tar;
}
INDEX_DROP:
for my $i_src ($src_table->get_indices) {
next if !$self->ignore_index_names && $checked_indices{$i_src};
for my $i_tar ($tar_table->get_indices) {
next INDEX_DROP
if $i_src->equals($i_tar, $self->case_insensitive, $self->ignore_index_names);
}
push @{ $self->table_diff_hash->{$tar_table}{indexes_to_drop} }, $i_src;
}
}
sub diff_table_constraints {
my ($self, $src_table, $tar_table) = @_;
my (%checked_constraints);
CONSTRAINT_CREATE:
for my $c_tar ($tar_table->get_constraints) {
for my $c_src ($src_table->get_constraints) {
# This is a bit of a hack - needed for renaming tables to work
local $c_src->{table} = $tar_table;
if ($c_tar->equals($c_src, $self->case_insensitive, $self->ignore_constraint_names)) {
$checked_constraints{$c_src} = 1;
next CONSTRAINT_CREATE;
}
}
push @{ $self->table_diff_hash->{$tar_table}{constraints_to_create} }, $c_tar;
}
CONSTRAINT_DROP:
for my $c_src ($src_table->get_constraints) {
# This is a bit of a hack - needed for renaming tables to work
local $c_src->{table} = $tar_table;
next if !$self->ignore_constraint_names && $checked_constraints{$c_src};
for my $c_tar ($tar_table->get_constraints) {
next CONSTRAINT_DROP
if $c_src->equals($c_tar, $self->case_insensitive, $self->ignore_constraint_names);
}
push @{ $self->table_diff_hash->{$tar_table}{constraints_to_drop} }, $c_src;
}
}
sub diff_table_fields {
my ($self, $src_table, $tar_table) = @_;
# List of ones we've renamed from so we don't drop them
my %renamed_source_fields;
for my $tar_table_field ($tar_table->get_fields) {
my $f_tar_name = $tar_table_field->name;
if (my $old_name = $tar_table_field->extra->{renamed_from}) {
my $src_table_field = $src_table->get_field($old_name, $self->case_insensitive);
unless ($src_table_field) {
carp qq#Renamed column can't find old column "@{[$src_table->qualified_name]}.$old_name" for renamed column\n#;
delete $tar_table_field->extra->{renamed_from};
} else {
push @{ $self->table_diff_hash->{$tar_table}{fields_to_rename} }, [ $src_table_field, $tar_table_field ];
$renamed_source_fields{$old_name} = 1;
next;
}
}
my $src_table_field = $src_table->get_field($f_tar_name, $self->case_insensitive);
unless ($src_table_field) {
push @{ $self->table_diff_hash->{$tar_table}{fields_to_create} }, $tar_table_field;
next;
}
# field exists, something changed. This is a bit complex. Parsers can
# normalize types, but only some of them do, so compare the normalized and
# parsed types for each field to each other
if ( !$tar_table_field->equals($src_table_field, $self->case_insensitive)
&& !$tar_table_field->equals($src_table_field->parsed_field, $self->case_insensitive)
&& !$tar_table_field->parsed_field->equals($src_table_field, $self->case_insensitive)
&& !$tar_table_field->parsed_field->equals($src_table_field->parsed_field, $self->case_insensitive)) {
# Some producers might need src field to diff against
push @{ $self->table_diff_hash->{$tar_table}{fields_to_alter} }, [ $src_table_field, $tar_table_field ];
next;
}
}
# Now check to see if any fields from src_table need to be dropped
for my $src_table_field ($src_table->get_fields) {
my $f_src_name = $src_table_field->name;
next if $renamed_source_fields{$f_src_name};
my $tar_table_field = $tar_table->get_field($f_src_name, $self->case_insensitive);
unless ($tar_table_field) {
push @{ $self->table_diff_hash->{$tar_table}{fields_to_drop} }, $src_table_field;
next;
}
}
}
sub diff_table_options {
my ($self, $src_table, $tar_table) = @_;
my $cmp = sub {
my ($a_name, undef, $b_name, undef) = (%$a, %$b);
$a_name cmp $b_name;
};
# Need to sort the options so we don't get spurious diffs.
my (@src_opts, @tar_opts);
@src_opts = sort $cmp $src_table->options;
@tar_opts = sort $cmp $tar_table->options;
# If there's a difference, just re-set all the options
push @{ $self->table_diff_hash->{$tar_table}{table_options} }, $tar_table
unless $src_table->_compare_objects(\@src_opts, \@tar_opts);
}
# support producer_options as an alias for sqlt_args for legacy code.
sub producer_options {
my $self = shift;
return $self->sqlt_args(@_);
}
# support producer_args as an alias for sqlt_args for legacy code.
sub producer_args {
my $self = shift;
return $self->sqlt_args(@_);
}
1;
__END__
=head1 NAME
SQL::Translator::Diff - determine differences between two schemas
=head1 DESCRIPTION
Takes two input SQL::Translator::Schemas (or SQL files) and produces ALTER
statements to make them the same
=head1 SNYOPSIS
Simplest usage:
use SQL::Translator::Diff;
my $sql = SQL::Translator::Diff::schema_diff($source_schema, 'MySQL', $target_schema, 'MySQL', $options_hash)
OO usage:
use SQL::Translator::Diff;
my $diff = SQL::Translator::Diff->new({
output_db => 'MySQL',
source_schema => $source_schema,
target_schema => $target_schema,
%$options_hash,
})->compute_differences->produce_diff_sql;
=head1 OPTIONS
=over
=item B<ignore_index_names>
Match indexes based on types and fields, ignoring name.
=item B<ignore_constraint_names>
Match constrains based on types, fields and tables, ignoring name.
=item B<output_db>
Which producer to use to produce the output.
=item B<case_insensitive>
Ignore case of table, field, index and constraint names when comparing
=item B<no_batch_alters>
Produce each alter as a distinct C<ALTER TABLE> statement even if the producer
supports the ability to do all alters for a table as one statement.
=item B<ignore_missing_methods>
If the diff would need a method that is missing from the producer, just emit a
comment showing the method is missing, rather than dieing with an error
=item B<sqlt_args>
Hash of extra arguments passed to L<SQL::Translator/new> and the below
L</PRODUCER FUNCTIONS>.
=back
=head1 PRODUCER FUNCTIONS
The following producer functions should be implemented for completeness. If
any of them are needed for a given diff, but not found, an error will be
thrown.
=over
=item * C<alter_create_constraint($con, $args)>
=item * C<alter_drop_constraint($con, $args)>
=item * C<alter_create_index($idx, $args)>
=item * C<alter_drop_index($idx, $args)>
=item * C<add_field($fld, $args)>
=item * C<alter_field($old_fld, $new_fld, $args)>
=item * C<rename_field($old_fld, $new_fld, $args)>
=item * C<drop_field($fld, $args)>
=item * C<alter_table($table, $args)>
=item * C<drop_table($table, $args)>
=item * C<rename_table($old_table, $new_table, $args)> (optional)
=item * C<batch_alter_table($table, $hash, $args)> (optional)
If the producer supports C<batch_alter_table>, it will be called with the
table to alter and a hash, the keys of which will be the method names listed
above; values will be arrays of fields or constraints to operate on. In the
case of the field functions that take two arguments this will appear as an
array reference.
I.e. the hash might look something like the following:
{
alter_create_constraint => [ $constraint1, $constraint2 ],
add_field => [ $field ],
alter_field => [ [$old_field, $new_field] ]
}
=item * C<preprocess_schema($schema)> (optional)
C<preprocess_schema> is called by the Diff code to allow the producer to
normalize any data it needs to first. For example, the MySQL producer uses
this method to ensure that FK constraint names are unique.
Basicaly any changes that need to be made to produce the SQL file for the
schema should be done here, so that a diff between a parsed SQL file and (say)
a parsed DBIx::Class::Schema object will be sane.
(As an aside, DBIx::Class, for instance, uses the presence of a
C<preprocess_schema> function on the producer to know that it can diff between
the previous SQL file and its own internal representation. Without this method
on th producer it will diff the two SQL files which is slower, but known to
work better on old-style producers.)
=back
=head1 AUTHOR
Original Author(s) unknown.
Refactor/re-write and more comprehensive tests by Ash Berlin C<< ash@cpan.org >>.
Redevelopment sponsored by Takkle Inc.
=cut