1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

per-file combinations

This commit is contained in:
Sergei Golubchik
2012-02-06 21:36:56 +01:00
parent e06c1c70e5
commit 9c8c572fd3
7 changed files with 142 additions and 158 deletions

View File

@@ -37,8 +37,8 @@ sub new {
sub fullname {
my ($self)= @_;
$self->{name} . (defined $self->{combination}
? " '$self->{combination}'"
$self->{name} . (defined $self->{combinations}
? " '" . join(',', sort @{$self->{combinations}}) . "'"
: "")
}