Release commit for 1.62
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / XML.pm
1 package SQL::Translator::Producer::XML;
2
3 =pod
4
5 =head1 NAME
6
7 SQL::Translator::Producer::XML - Alias to XML::SQLFairy producer
8
9 =head1 DESCRIPTION
10
11 Previous versions of SQL::Translator included an XML producer, but the
12 namespace has since been further subdivided.  Therefore, this module is
13 now just an alias to the XML::SQLFairy producer.
14
15 =head1 SEE ALSO
16
17 SQL::Translator::Producer::XML::SQLFairy.
18
19 =head1 AUTHOR
20
21 Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
22
23 =cut
24
25 use strict;
26 use warnings;
27 our $DEBUG;
28 our $VERSION = '1.62';
29 $DEBUG = 1 unless defined $DEBUG;
30
31 use SQL::Translator::Producer::XML::SQLFairy;
32
33 *produce = \&SQL::Translator::Producer::XML::SQLFairy::produce;
34
35 1;