この表を仮定すると:
create table s4 (a timeuuid primary key, b timeuuid, stuff text);
create index s4_index1 on s4 (b);
これは機能します:
select * from s4 where b = 259300f1-01bb-11e3-89a8-896ab45a266f;
しかし、これは失敗します。なんで?どうすれば回避できますか?
update s4 set stuff='f' where b=259300f1-01bb-11e3-89a8-896ab45a266f;
error->> Bad Request: Non PRIMARY KEY b found in where clause