I hope to remove index in table, but it occurs not remove index.
CREATE INDEX idx_name ON schema_name.table_name(column1, column2);
And, remove index
DROP INDEX idx_name;
but, it fail.
error message is
ERROR: index "idx_name" does not exist
How I do it?