Query was wrong (Wild card must be escaped). It has been fixed.
Before:
SELECT * FROM information_schema.tables WHERE table_type="BASE TABLE" and table_schema="{DB name}" AND table_name like "pqa_%"
After:
SELECT * FROM information_schema.tables WHERE table_type="BASE TABLE" and table_schema="{DB name}" AND table_name like "pqa\_%"