diff options
author | vva@eagle.mysql.r18.ru <> | 2003-10-19 16:57:17 -0400 |
---|---|---|
committer | vva@eagle.mysql.r18.ru <> | 2003-10-19 16:57:17 -0400 |
commit | 982e77be631c6f5c89795ede716477456a899c1b (patch) | |
tree | 3683b8218013594f202af0f19465d6422cb9e360 /scripts | |
parent | 3fffea42b9354375826d1bef3e0962f1c47e1b07 (diff) | |
download | mariadb-git-982e77be631c6f5c89795ede716477456a899c1b.tar.gz |
made more fine error message in scripts/fill_help_tables.sh
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/fill_help_tables.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/fill_help_tables.sh b/scripts/fill_help_tables.sh index 8ba05910596..cb5437f7178 100644 --- a/scripts/fill_help_tables.sh +++ b/scripts/fill_help_tables.sh @@ -112,6 +112,7 @@ sub add_topic_to_category $categories{$current_category}->{$topic_name}= $topics{$topic_name}; my $category= $categories{$current_category}; + $category->{__name__}= $current_category; if (exists($category->{__parent_category__})) { @@ -132,7 +133,7 @@ sub add_topic_to_category my $old_category= $topics{$topic_name}->{category}; if ($old_category ne $category) { - print_error "wrong category for $topic_name\n"; + print_error "wrong category for $topic_name (first one's \"$old_category->{__name__}\" second one's \"$current_category\")\n"; } } |