我使用oracle,在test表的age列加上了自己建的domain index。
然后使用insert语句能进入ODCIIndexInsert()方法。
但是我使用select * from test where age=1;这种就不走ODCIIndexStart()方法,domain index一定需要使用operator么
比如select * from test where eq(age,1)=1. eq是自己建的操作符。