/[pgdiff]/pgdiff
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /pgdiff

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by dpavlin, Tue Aug 12 18:45:04 2003 UTC revision 1.12 by dpavlin, Wed Oct 29 18:00:39 2003 UTC
# Line 43  Options: Line 43  Options:
43          --slavehost=hostname --slaveport=port          --slavehost=hostname --slaveport=port
44          --slaveuser=username --slavepassword=string          --slaveuser=username --slavepassword=string
45          --slavefile=filename          --slavefile=filename
46          --tables[s]=table[,table...]          --table[s]=table[,table...]
47  ";  ";
48  #    exit ((scalar(@ARGV) < 2)? 1:0);  #    exit ((scalar(@ARGV) < 2)? 1:0);
49      exit;      exit;
# Line 63  $sinfo = "$sinfo port=$slaveport" if (de Line 63  $sinfo = "$sinfo port=$slaveport" if (de
63  print "Master connection is $minfo\n" if ($debug);  print "Master connection is $minfo\n" if ($debug);
64  print "Slave connection is $sinfo\n" if ($debug);  print "Slave connection is $sinfo\n" if ($debug);
65    
66  my $mdbh = DBI->connect("DBI:Pg:$minfo", $masteruser, $masterpassword, { PrintError => 1 });  my $mdbh = DBI->connect("DBI:Pg:$minfo", $masteruser, $masterpassword, { PrintError => 0 } );
67  my $sdbh = DBI->connect("DBI:Pg:$sinfo", $slaveuser, $slavepassword, { PrintError => 1 });  if (! $mdbh) {
68            print "Can't connect to master database $master";
69            print "on $masterhost" if ($masterhost);
70            print "\n";
71            exit 1;
72    }
73    my $sdbh = DBI->connect("DBI:Pg:$sinfo", $slaveuser, $slavepassword, { PrintError => 0 });
74    if (! $sdbh) {
75            print "Can't connect to slave database $slave";
76            print "on $slavehost" if ($slavehost);
77            print "\n";
78            exit 1;
79    }
80    
81  my ($diff_shema,$diff_data) = (0,0);  my ($diff_shema,$diff_data) = (0,0);
82    
# Line 107  sub debug { Line 119  sub debug {
119  $verbose = 1 if ($debug);  $verbose = 1 if ($debug);
120    
121  # init object for scheme in master database  # init object for scheme in master database
122  my $mscheme = new Pg::Scheme( 'dbh' => $mdbh ) || die "can't query schema";  my $mscheme = new Pg::Scheme( 'dbh' => $mdbh, 'DEBUG' => 0 ) || die "can't query master schema";
123    my $sscheme = new Pg::Scheme( 'dbh' => $sdbh, 'DEBUG' => 0 ) || die "can't query slave schema";
124    
125  # which tables to compare?  # which tables to compare?
126    
# Line 115  my @tables = $mscheme->list_tables($tabl Line 128  my @tables = $mscheme->list_tables($tabl
128    
129  debug "Comparing tables: ".join(", ",@tables)."\n";  debug "Comparing tables: ".join(", ",@tables)."\n";
130    
131    # start transaction
132    print "begin work;\n";
133    
134    # disable active triggers on slave database
135    my @triggers = $sscheme->get_activetriggers();
136    
137    foreach my $tr (@triggers) {
138            print "update pg_trigger set tgenabled = false where tgname='$tr';\n";
139    }
140    
141  my $cols;  my $cols;
142  my $diff_total = 0;  my $diff_total = 0;
143    
# Line 122  foreach my $table (@tables) { Line 145  foreach my $table (@tables) {
145    
146          my $sth;          my $sth;
147    
148    print "-- schema...\n";
149          # diff schema          # diff schema
150            foreach my $row (@{$mscheme->pg_attribute($table)}) {
151    #               print Dumper($row);
152            }
153    
154          my @cols_notnull;# colums compared by a=b  print "-- constraints...\n";
155          my @cols_null;  # colums compared by a=b or a is null and b is null          # diff constraints
156          my @cols_skip;  # skipped columns          foreach my $tr (@{$mscheme->triggers($table)}) {
157          my @cols_test;  # all colums to test (without skipped)  #               print Dumper($tr);
158          my @cols;       # all colums (for insert)          }
159    print "-- triggers...\n";
160            # diff triggers
161            foreach my $tr (@{$mscheme->triggers($table)}) {
162    #               print Dumper($tr);
163            }
164    
165            # all colums (for insert)
166            my @cols = @{$mscheme->cols($table)};
167    
168            # colums compared by a=b
169            my @cols_notnull = @{$mscheme->cols_notnull($table)};
170    
171          foreach my $row ($mscheme->explain_table($table)) {          # colums compared by a=b or a is null and b is null
172                  # attname | format_type | attnotnull | atthasdef | attnum          my @cols_null = @{$mscheme->cols_null($table)};
173    
174                  push @cols,$row->{attname};          # primary key columns
175            my @cols_pk = @{$mscheme->cols_pk($table)};
176    
177            # columns to compare (not in primary key)
178            my @cols_cmp = @{$mscheme->cols_notpk($table)};
179    
180            my @cols_skip;  # skipped columns
181            my @cols_test;  # all colums to test (without skipped)
182    
183            foreach my $row (@{$mscheme->pg_attribute($table)}) {
184                    # attname format_type attnotnull atthasdef attnum default references
185    
186                  # FIXME: do something with attributes which shouldn't be compared                  # FIXME: do something with attributes which shouldn't be compared
187                  # (date, time, datetime, timestamp)                  # (date, time, datetime, timestamp)
188                  if ($row->{format_type} =~ /(date)|(time)/i) {                  if ($row->{format_type} =~ /(date)|(time)/i) {
189                          push @cols_skip,$row->{attname};                          push @cols_skip,$row->{attname};
                         next;  
                 }  
   
                 push @cols_test,$row->{attname};  
   
                 if ($row->{attnotnull}) {  
                         push @cols_notnull,$row->{attname};  
190                  } else {                  } else {
191                          push @cols_null,$row->{attname};                          push @cols_test,$row->{attname};
192                  }                  }
193    
194          }          }
195    
196          if ($debug) {          if ($debug) {
# Line 161  foreach my $table (@tables) { Line 202  foreach my $table (@tables) {
202    
203          # diff data          # diff data
204    
         my @cols_pk;    # columns which are primary key  
         my %in_pk;  
   
         $sql="  
 SELECT  
         i.indexrelid as indexrelid, i.indrelid as indrelid,  
         count(a.attname) as cols_in_pk  
 FROM  
         pg_catalog.pg_class c,  
         pg_catalog.pg_index i,  
         pg_catalog.pg_attribute a  
 WHERE  
         c.oid = i.indrelid  
         and i.indisunique  
         and c.relname = '$table'  
         and a.attrelid = i.indexrelid  
 GROUP BY  
         i.indexrelid, i.indrelid, c.relname, i.indisprimary, i.indisunique  
 ORDER BY  
         cols_in_pk ASC, i.indisprimary DESC, i.indisunique DESC, c.relname DESC  
 ";  
         debug_sql($sql);  
         $sth = $mdbh->prepare($sql);  
         $sth->execute() || die;  
         my $row = $sth->fetchrow_hashref();  
         if ($row) {  
                 $sql="  
                 select a1.attname as attname from pg_attribute a1, pg_attribute a2 where a1.attrelid = ".$row->{indexrelid}." and a2.attrelid=".$row->{indrelid}." and a1.attname = a2.attname and a2.attnotnull";  
                   
                 debug_sql($sql);  
                 my $sth2 = $mdbh->prepare($sql);  
                 $sth2->execute() || die;  
                 @cols_pk = ();  
                 while (my $row2 = $sth2->fetchrow_hashref()) {  
                         push @cols_pk,$row2->{attname};  
                         $in_pk{$row2->{attname}}++;  
                 }  
                   
         }  
205          if (! @cols_pk) {          if (! @cols_pk) {
206                  print STDERR "can't find PK rows for table '$table' using all\n";                  print STDERR "can't find PK rows for table '$table' using all\n";
207                  @cols_pk = @cols;                  @cols_pk = @cols;
208          }          }
209    
         my @cols_cmp;   # columns to compare  
   
         foreach my $col (@cols_test) {  
                 push @cols_cmp,$col if (! $in_pk{$col});  
         }  
210    
211          if ($verbose) {          if ($verbose) {
212                  print "table '$table' using for key: (",join(", ",@cols_pk),") to compare cols: (",join(", ",@cols_cmp),")\n";                  print "table '$table' using for key: (",join(", ",@cols_pk),") to compare cols: (",join(", ",@cols_cmp),")\n";
# Line 248  ORDER BY Line 245  ORDER BY
245    
246          debug_sql($msql);          debug_sql($msql);
247    
248          my $msth = $mdbh->prepare($msql) || die;          my $msth = $mdbh->prepare($msql) || die $mdbh->errstr;
249          $msth->execute() || die;          $msth->execute() || die $msth->errstr;
250    
251          my $ssth = $sdbh->prepare($ssql) || die;          my $ssth = $sdbh->prepare($ssql) || die $sdbh->errstr;
252          $ssth->execute() || die;          $ssth->execute() || die $ssth->errstr;
253    
254          my $diff_row = 0;          my $diff_row = 0;
255    
# Line 307  ORDER BY Line 304  ORDER BY
304    
305                  # insert into slave database                  # insert into slave database
306                  sub sql_insert {                  sub sql_insert {
307                            my $dbh = shift @_ || die "need dbh";
308                          my $table = shift @_ || die "need table as argument";                          my $table = shift @_ || die "need table as argument";
309                          my $row = shift @_ || die "need row data";                          my $row = shift @_ || die "need row data";
310                          my @cols = @_;                          my @cols = @_;
# Line 314  ORDER BY Line 312  ORDER BY
312                          my $sql = "insert into $table (".join(",",@cols).") values (";                          my $sql = "insert into $table (".join(",",@cols).") values (";
313                          my $comma = "";                          my $comma = "";
314                          foreach my $col (@cols) {                          foreach my $col (@cols) {
315                                  $sql .= $comma.$mdbh->quote($row->{$col});                                  $sql .= $comma.$dbh->quote($row->{$col});
316                                  $comma = ",";                                  $comma = ",";
317                          }                          }
318                          $sql.=")";                          $sql.=")";
# Line 324  ORDER BY Line 322  ORDER BY
322    
323                  # delete from slave database                  # delete from slave database
324                  sub sql_delete {                  sub sql_delete {
325                            my $dbh = shift @_ || die "need dbh";
326                          my $table = shift @_ || die "need table as argument";                          my $table = shift @_ || die "need table as argument";
327                          my $row = shift @_ || die "need row as argument";                          my $row = shift @_ || die "need row as argument";
328                          my @cols_pk = @_;                          my @cols_pk = @_;
329    
330                          my $where = sql_where(@cols_pk);                          my $where = sql_where(@cols_pk);
331    
332                          my $sql = "delete from $table ";                          my $sql = "delete from $table";
333                          foreach my $col (@cols_pk) {                          foreach my $col (@cols_pk) {
334                                  my $val = $sdbh->quote($row->{$col}) || die "can't find value in row for col $col";                                  my $val = $dbh->quote($row->{$col}) || die "can't find value in row for col $col";
335                                  $where =~ s/\?/$val/;                                  $where =~ s/\?/$val/;
336                          }                          }
337                          $sql .= $where;                          $sql .= $where;
# Line 342  ORDER BY Line 341  ORDER BY
341    
342                  # update row in slave database                  # update row in slave database
343                  sub sql_update {                  sub sql_update {
344                            my $dbh = shift @_ || die "need dbh";
345                          my $table = shift @_ || die "need table as argument";                          my $table = shift @_ || die "need table as argument";
346                          my $col = shift @_ || die "need col to update";                          my $col = shift @_ || die "need col to update";
347                          my $val = shift @_ || die "need new val";                          my $row = shift @_ || die "need row";
348                          my @cols_pk = @_ || die "need pk idenitifier";                          my @cols_pk = @_;
349    
350                          my $sql = "udate $table set $col=".$mdbh->quote($val);                          my $sql = "update $table set $col=".$dbh->quote($row->{$col});
351                            my $where = sql_where(@cols_pk);
352                            foreach my $col (@cols_pk) {
353                                    my $val = $dbh->quote($row->{$col}) || die "can't find value in row for col $col";
354                                    $where =~ s/\?/$val/;
355                            }
356                            $sql .= $where;
357                          debug_sql($sql);                          debug_sql($sql);
358                          return $sql;                          return $sql;
359                  }                  }
# Line 367  ORDER BY Line 373  ORDER BY
373                                  $diff_row++;                                  $diff_row++;
374                                  $pk_same = 0;                                  $pk_same = 0;
375                                  print STDERR "EXTRA row in table '$table' pk: [".join(",",@cols_pk)."] value (".join(",",pk_val($srow,@cols_pk)).")\n" if ($verbose);                                  print STDERR "EXTRA row in table '$table' pk: [".join(",",@cols_pk)."] value (".join(",",pk_val($srow,@cols_pk)).")\n" if ($verbose);
376                                  print sql_delete($table,$srow,@cols_pk),";\n";                                  print sql_delete($sdbh,$table,$srow,@cols_pk),";\n";
377                                  $have_srow = FETCH_ROW;                                  $have_srow = FETCH_ROW;
378                                  last;                                  last;
379                          } elsif ( ($have_mrow == HAVE_ROW && $have_srow == NO_ROW) ||                          } elsif ( ($have_mrow == HAVE_ROW && $have_srow == NO_ROW) ||
# Line 375  ORDER BY Line 381  ORDER BY
381                                  $diff_row++;                                  $diff_row++;
382                                  $pk_same = 0;                                  $pk_same = 0;
383                                  print STDERR "MISSING row in table '$table' pk: [".join(",",@cols_pk)."] value (".join(",",pk_val($mrow,@cols_pk)).")\n" if ($verbose);                                  print STDERR "MISSING row in table '$table' pk: [".join(",",@cols_pk)."] value (".join(",",pk_val($mrow,@cols_pk)).")\n" if ($verbose);
384                                  print sql_insert($table,$mrow,@cols),";\n";                                  print sql_insert($mdbh,$table,$mrow,@cols),";\n";
385                                  $have_mrow = FETCH_ROW;                                  $have_mrow = FETCH_ROW;
386                                  last;                                  last;
387                          }                          }
# Line 387  ORDER BY Line 393  ORDER BY
393                                  if ($mrow->{$col} ne $srow->{$col}) {                                  if ($mrow->{$col} ne $srow->{$col}) {
394                                          $diff_row++;                                          $diff_row++;
395                                          print STDERR "DIFF in table '$table' row ($col): [".join(",",@cols_pk)."] '$mrow->{$col}' != '$srow->{$col}'\n" if ($verbose);                                          print STDERR "DIFF in table '$table' row ($col): [".join(",",@cols_pk)."] '$mrow->{$col}' != '$srow->{$col}'\n" if ($verbose);
396                                          print sql_update($table,$col,$mrow->{$col},@cols_pk),";\n";                                          print sql_update($mdbh,$table,$col,$mrow,@cols_pk),";\n";
397                                  }                                  }
398                          }                          }
399                          $have_mrow = FETCH_ROW;                          $have_mrow = FETCH_ROW;
# Line 401  ORDER BY Line 407  ORDER BY
407    
408  if ($verbose) {  if ($verbose) {
409          if ($diff_total == 0) {          if ($diff_total == 0) {
410                  print STDERR "databases are same";                  print STDERR "databases are same\n";
411          } elsif ($diff_total > 0) {          } elsif ($diff_total > 0) {
412                  print STDERR "$diff_total differences in all tables\n";                  print STDERR "$diff_total differences in all tables\n";
413          } else {          } else {
# Line 409  if ($verbose) { Line 415  if ($verbose) {
415          }          }
416  }  }
417    
418    # enable triggers again on slave
419    foreach my $tr (@triggers) {
420            print "update pg_trigger set tgenabled = true where tgname='$tr';\n";
421    }
422    # end transaction
423    print "commit;\n";
424    
425  $mdbh->disconnect();  $mdbh->disconnect();
426  $sdbh->disconnect();  $sdbh->disconnect();

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.12

  ViewVC Help
Powered by ViewVC 1.1.26