Jeff Davis <jdavis-pgsql@xxxxxxxxxxx> writes: > I think I created a type that was compatible with the btree index, and > everything seems fine, except that it doesn't actually use the index. I > created the operators and the opclass as well. > => explain select * from test where t = '(2)'; > QUERY PLAN > --------------------------------------------------------------------- > Seq Scan on test (cost=100000000.00..100000002.54 rows=1 width=32) > Filter: ((t).i = ('(2)'::type2).i) > (2 rows) The explain doesn't seem to quite match up with what you wrote in the command. How did those ".i" qualifiers get in there? regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@xxxxxxxxxxxxxx so that your message can get through to the mailing list cleanly