pgsql 9.1 で BOX タイプの列を含むテーブルから選択するのに問題があります。
create table test (t box);
CREATE TABLE
select * from test order by t;
ERROR: could not identify an ordering operator for type box
LINE 1: select * from test order by t;
^
TIP: Use an explicit ordering operator or modify the query.
列の明示的なインデックスを作成しようとしても、順序付けと等価性を処理する必要がある演算子のクラス (box_ops) があることがわかりました。
create index testx on test using gist (t box_ops);
CREATE INDEX
しかし、問題はまだ残っています。私は何が欠けていますか?ありがとう!