Closed
Description
This breaks if one of your comments is on a view.
CREATE TABLE users (name TEXT);
CREATE VIEW harrys AS
SELECT name
FROM users
WHERE name ILIKE '%harry%';
COMMENT ON harrys.name IS 'Harry's name';
relation "harrys" does not exist
Originally posted by @maxhawkins in #191 (comment)