다음과 같은 에러가 난다면 인덱스가 깨진것.

ERROR:    Index my_index is not a btree



reindex를 통해 복구가 가능함.


-- 깨진 인덱스를 다시 인덱싱
# REINDEX INDEX my_index;

-- 혹은 테이블 전체를 다시 인덱싱
# REINDEX TABLE my_table;





참조: http://www.postgresql.org/docs/8.3/static/sql-reindex.html
Posted by bloodguy
,