wiki.techinc.nl/maintenance/postgres/compare_schemas.pl

254 lines
5.6 KiB
Perl
Raw Normal View History

#!/usr/bin/perl
## Rough check that the base and postgres "tables.sql" are in sync
## Should be run from maintenance/postgres
use strict;
use warnings;
use Data::Dumper;
my @old = ('../tables.sql');
my $new = 'tables.sql';
my @xfile;
## Read in exceptions and other metadata
my %ok;
while (<DATA>) {
next unless /^(\w+)\s*:\s*([^#]+)/;
my ($name,$val) = ($1,$2);
chomp $val;
if ($name eq 'RENAME') {
die "Invalid rename\n" unless $val =~ /(\w+)\s+(\w+)/;
$ok{OLD}{$1} = $2;
$ok{NEW}{$2} = $1;
next;
}
if ($name eq 'XFILE') {
push @xfile, $val;
next;
}
for (split /\s+/ => $val) {
$ok{$name}{$_} = 0;
}
}
my $datatype = join '|' => qw(
bool
tinyint int bigint real float
2007-07-05 13:41:47 +00:00
tinytext mediumtext text char varchar varbinary binary
timestamp datetime
tinyblob mediumblob blob
);
$datatype .= q{|ENUM\([\"\w, ]+\)};
$datatype = qr{($datatype)};
my $typeval = qr{(\(\d+\))?};
my $typeval2 = qr{ unsigned| binary| NOT NULL| NULL| auto_increment| default ['\-\d\w"]+| REFERENCES .+CASCADE};
my $indextype = join '|' => qw(INDEX KEY FULLTEXT), 'PRIMARY KEY', 'UNIQUE INDEX', 'UNIQUE KEY';
$indextype = qr{$indextype};
my $engine = qr{TYPE|ENGINE};
my $tabletype = qr{InnoDB|MyISAM|HEAP|HEAP MAX_ROWS=\d+|InnoDB MAX_ROWS=\d+ AVG_ROW_LENGTH=\d+};
2006-11-14 03:03:44 +00:00
my $charset = qr{utf8|binary};
open my $newfh, '<', $new or die qq{Could not open $new: $!\n};
my ($table,%old);
## Read in the xfiles
my %xinfo;
for my $xfile (@xfile) {
print "Loading $xfile\n";
my $info = &parse_sql($xfile);
for (keys %$info) {
$xinfo{$_} = $info->{$_};
}
}
for my $oldfile (@old) {
print "Loading $oldfile\n";
my $info = &parse_sql($oldfile);
for (keys %xinfo) {
$info->{$_} = $xinfo{$_};
}
$old{$oldfile} = $info;
}
sub parse_sql {
my $oldfile = shift;
open my $oldfh, '<', $oldfile or die qq{Could not open $oldfile: $!\n};
my %info;
while (<$oldfh>) {
next if /^\s*\-\-/ or /^\s+$/;
s/\s*\-\- [\w ]+$//;
chomp;
if (/CREATE\s*TABLE/i) {
m{^CREATE TABLE /\*\$wgDBprefix\*/(\w+) \($}
or die qq{Invalid CREATE TABLE at line $. of $oldfile\n};
$table = $1;
$info{$table}{name}=$table;
}
elsif (m#^\) /\*\$wgDBTableOptions\*/#) {
$info{$table}{engine} = 'TYPE';
$info{$table}{type} = 'variable';
}
elsif (/^\) ($engine)=($tabletype);$/) {
$info{$table}{engine}=$1;
$info{$table}{type}=$2;
}
elsif (/^\) ($engine)=($tabletype), DEFAULT CHARSET=($charset);$/) {
$info{$table}{engine}=$1;
$info{$table}{type}=$2;
$info{$table}{charset}=$3;
}
elsif (/^ (\w+) $datatype$typeval$typeval2{0,3},?$/) {
$info{$table}{column}{$1} = $2;
}
elsif (/^ ($indextype)(?: (\w+))? \(([\w, \(\)]+)\),?$/) {
$info{$table}{lc $1.'_name'} = $2 ? $2 : '';
$info{$table}{lc $1.'pk_target'} = $3;
}
else {
die "Cannot parse line $. of $oldfile:\n$_\n";
}
}
close $oldfh;
return \%info;
} ## end of parse_sql
for my $oldfile (@old) {
## Begin non-standard indent
## MySQL sanity checks
for my $table (sort keys %{$old{$oldfile}}) {
my $t = $old{$oldfile}{$table};
if (($oldfile =~ /5/ and $t->{engine} ne 'ENGINE')
or
($oldfile !~ /5/ and $t->{engine} ne 'TYPE')) {
die "Invalid engine for $oldfile: $t->{engine}\n" unless $t->{name} eq 'profiling';
}
2006-11-14 03:03:44 +00:00
my $charset = $t->{charset} || '';
if ($oldfile !~ /binary/ and $charset eq 'binary') {
die "Invalid charset for $oldfile: $charset\n";
}
}
my $dtype = join '|' => qw(
SMALLINT INTEGER BIGINT NUMERIC SERIAL
TEXT CHAR VARCHAR
BYTEA
TIMESTAMPTZ
CIDR
);
$dtype = qr{($dtype)};
my %new;
2007-06-17 02:09:21 +00:00
my ($infunction,$inview,$inrule,$lastcomma) = (0,0,0,0);
seek $newfh, 0, 0;
while (<$newfh>) {
next if /^\s*\-\-/ or /^\s*$/;
s/\s*\-\- [\w ']+$//;
next if /^BEGIN;/ or /^SET / or /^COMMIT;/;
next if /^CREATE SEQUENCE/;
next if /^CREATE(?: UNIQUE)? INDEX/;
next if /^CREATE FUNCTION/;
next if /^CREATE TRIGGER/ or /^ FOR EACH ROW/;
next if /^INSERT INTO/ or /^ VALUES \(/;
next if /^ALTER TABLE/;
chomp;
if (/^\$mw\$;?$/) {
$infunction = $infunction ? 0 : 1;
next;
}
next if $infunction;
next if /^CREATE VIEW/ and $inview = 1;
if ($inview) {
/;$/ and $inview = 0;
next;
}
next if /^CREATE RULE/ and $inrule = 1;
if ($inrule) {
/;$/ and $inrule = 0;
next;
}
if (/^CREATE TABLE "?(\w+)"? \($/) {
$table = $1;
$new{$table}{name}=$table;
2007-06-17 02:09:21 +00:00
$lastcomma = 1;
}
elsif (/^\);$/) {
2007-06-17 02:09:21 +00:00
if ($lastcomma) {
warn "Stray comma before line $.\n";
}
}
2007-06-17 02:09:21 +00:00
elsif (/^ (\w+) +$dtype.*?(,?)(?: --.*)?$/) {
$new{$table}{column}{$1} = $2;
2007-06-17 02:09:21 +00:00
if (!$lastcomma) {
print "Missing comma before line $. of $new\n";
}
$lastcomma = $3 ? 1 : 0;
}
else {
die "Cannot parse line $. of $new:\n$_\n";
}
}
## Old but not new
for my $t (sort keys %{$old{$oldfile}}) {
if (!exists $new{$t} and !exists $ok{OLD}{$t}) {
print "Table not in $new: $t\n";
next;
}
2006-07-25 00:28:03 +00:00
next if exists $ok{OLD}{$t} and !$ok{OLD}{$t};
my $newt = exists $ok{OLD}{$t} ? $ok{OLD}{$t} : $t;
my $oldcol = $old{$oldfile}{$t}{column};
2006-07-25 00:28:03 +00:00
my $newcol = $new{$newt}{column};
for my $c (keys %$oldcol) {
if (!exists $newcol->{$c}) {
2007-01-11 15:56:37 +00:00
print "Column $t.$c not in $new\n";
next;
}
}
for my $c (keys %$newcol) {
if (!exists $oldcol->{$c}) {
2007-01-11 15:56:37 +00:00
print "Column $t.$c not in $oldfile\n";
next;
}
}
}
## New but not old:
for (sort keys %new) {
if (!exists $old{$oldfile}{$_} and !exists $ok{NEW}{$_}) {
2007-01-11 15:56:37 +00:00
print "Not in $oldfile: $_\n";
next;
}
}
} ## end each file to be parsed
__DATA__
## Known exceptions
OLD: searchindex ## We use tsearch2 directly on the page table instead
2006-07-25 00:28:03 +00:00
RENAME: user mwuser ## Reserved word causing lots of problems
RENAME: text pagecontent ## Reserved word
NEW: mediawiki_version ## Just us, for now
XFILE: ../archives/patch-profiling.sql