summaryrefslogtreecommitdiffstatsabout
path: root/contrib/mysql_import_combined_log.pl
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/mysql_import_combined_log.pl')
-rw-r--r--contrib/mysql_import_combined_log.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/mysql_import_combined_log.pl b/contrib/mysql_import_combined_log.pl
index 1c801f2..cc5b8de 100644
--- a/contrib/mysql_import_combined_log.pl
+++ b/contrib/mysql_import_combined_log.pl
@@ -1,4 +1,8 @@
1#!/usr/bin/perl -w 1#!/usr/bin/perl -w
2
3# Written by Aaron Jenson.
4# Original source: http://www.visualprose.com/software.php
5# Updated to work under Perl 5.6.1 by Edward Rudd
2use strict; 6use strict;
3use Getopt::Long qw(:config bundling); 7use Getopt::Long qw(:config bundling);
4use DBI; 8use DBI;
@@ -216,6 +220,8 @@ EOF
216sub VERSION_MESSAGE 220sub VERSION_MESSAGE
217{ 221{
218 print "mysql_import_combined_log.pl version 1.1\n"; 222 print "mysql_import_combined_log.pl version 1.1\n";
223 print "Version 1.0 Written by Aaron Jenson.\n";
224 print "Update to work with perl 5.6.1 by Edward Rudd\n";
219} 225}
220 226
2211; 2271;