What is the output of
SELECT *
FROM pg_locks l
JOIN pg_class t ON l.relation = t.oid AND t.relkind = 'r'
WHERE t.relname="Bill";
It might be that there’re other sessions using your table in parallel and you cannot obtain Access Exclusive lock to drop it.