1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Add support for running in parallel

This commit is contained in:
msvensson@pilot.mysql.com
2008-04-24 13:02:53 +02:00
parent ea839ba054
commit ba900fe302
6 changed files with 678 additions and 258 deletions

View File

@ -61,6 +61,9 @@ sub _split_option {
elsif ($option=~ /^--(.*)$/){
return ($1, undef)
}
elsif ($option=~ /^\$(.*)$/){ # $VAR
return ($1, undef)
}
elsif ($option=~ /^(.*)=(.*)$/){
return ($1, $2)
}