Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 228444a

Browse files
committed
cleanup
1 parent 890bbf2 commit 228444a

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

contrib/mysql/my2pg.pl

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/perl5
1+
#!/usr/bin/perl
22

33
#
44
# My2Pg: MySQL to PostgreSQL dump conversion utility
@@ -35,7 +35,7 @@
3535
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3636
# SUCH DAMAGE.
3737
#
38-
# $Id: my2pg.pl,v 1.1 2001/02/10 11:43:12 momjian Exp $
38+
# $Id: my2pg.pl,v 1.2 2001/02/10 11:43:33 momjian Exp $
3939

4040
# TODO:
4141
# + Handle SETs
@@ -46,6 +46,9 @@
4646

4747
#
4848
# $Log: my2pg.pl,v $
49+
# Revision 1.2 2001/02/10 11:43:33 momjian
50+
# cleanup
51+
#
4952
# Revision 1.1 2001/02/10 11:43:12 momjian
5053
# Add other mysql conversion utility for comparisons.
5154
#
@@ -97,7 +100,7 @@
97100
$|=1;
98101

99102
print("------------------------------------------------------------------");
100-
print("\n-- My2Pg \$Revision: 1.1 $ \translated dump");
103+
print("\n-- My2Pg \$Revision: 1.2 $ \translated dump");
101104
print("\n--");
102105
print("\n------------------------------------------------------------------");
103106

@@ -119,7 +122,7 @@
119122
# push header to libtypes.c
120123
open(LIBTYPES,">$libtypesource");
121124
print LIBTYPES "/******************************************************";
122-
print LIBTYPES "\n * My2Pg \$Revision: 1.1 $ \translated dump";
125+
print LIBTYPES "\n * My2Pg \$Revision: 1.2 $ \translated dump";
123126
print LIBTYPES "\n * User types definitions";
124127
print LIBTYPES "\n ******************************************************/";
125128
print LIBTYPES "\n\n#include <postgres.h>\n";
@@ -611,7 +614,7 @@
611614

612615
open(MAKE,">Makefile");
613616
print MAKE "#
614-
# My2Pg \$Revision: 1.1 $ \translated dump
617+
# My2Pg \$Revision: 1.2 $ \translated dump
615618
# Makefile
616619
#
617620

0 commit comments

Comments
 (0)