Skip to content
Snippets Groups Projects
Commit 01ed883b authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Make fetch_all_by_hit_name_unversioned consider the . in the name.

parent a56041e0
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ sub fetch_all_by_hit_name_unversioned {
#construct a constraint like 't1.hit_name = "123"'
my @tabs = $self->_tables;
my ($name, $syn) = @{$tabs[0]};
my $constraint = ( "${syn}.hit_name LIKE '$hit_name%'" );
my $constraint = ( "${syn}.hit_name LIKE '$hit_name.%'" );
if( $logic_name ){
# Add the $logic_name constraint
......
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