I know that the following is not allowed as a row filter
'canada%.txt' or 'canada*.txt'
and I guess I can rewrite my filter as
file_name like 'Canada%' and file_name like '%.txt'
should work.
But is there an easier way instead of determing where the % is and spliting the string?