0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-28 14:58:20 +02:00

ircd::db: Better cursor comparison.

This commit is contained in:
Jason Volk 2017-09-18 20:54:31 -07:00
parent 5e137c676f
commit 676baec73d

View file

@ -260,5 +260,5 @@ const
if(!row.valid() || !o.row.valid())
return false;
return row.its.at(0).key() == o.row.its.at(0).key();
return idx->first == o.idx->first;
}