Skip to content
Snippets Groups Projects
Commit 12de5436 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Take partitioned tables into account when including or excluding tables

to copy.
parent 8aa22758
No related branches found
No related tags found
No related merge requests found
......@@ -543,15 +543,29 @@ foreach my $spec (@todo) {
if ( defined($opt_only_tables) ) {
push( @copy_cmd, '--include=db.opt' );
push( @copy_cmd,
map { sprintf( '--include=%s.*', $_ ) }
keys(%only_tables) );
# Partitioned tables:
push( @copy_cmd,
map { sprintf( '--include=%s#P#*.*', $_ ) }
keys(%only_tables) );
push( @copy_cmd, "--exclude=*" );
} elsif ( defined($opt_skip_tables) ) {
push( @copy_cmd, '--include=db.opt' );
push( @copy_cmd,
map { sprintf( '--exclude=%s.*', $_ ) }
keys(%skip_tables) );
# Partitioned tables:
push( @copy_cmd,
map { sprintf( '--exclude=%s#P#*.*', $_ ) }
keys(%skip_tables) );
push( @copy_cmd, "--include=*" );
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment