From eef3b53d02106cf466692d7728d0868ef9c9f9cb Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Tue, 9 Dec 2014 15:04:45 -0500 Subject: [PATCH] Do not consider "nouns" when ooking for matching tables inside of add customcols - the db= parameter can confuse things --- bucardo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bucardo b/bucardo index feb23a144..02caeded8 100755 --- a/bucardo +++ b/bucardo @@ -3084,7 +3084,7 @@ sub add_customcols { usage_exit($doc_section) unless length $item_name && length $clause; ## Does this number or name exist? - my @candidate_goats = find_goat_by_item($item_name, \@nouns); + my @candidate_goats = find_goat_by_item($item_name); if (! @candidate_goats) { print qq{Could not find a matching table for "$item_name"\n}; exit 1; -- 2.39.5