mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 16:22:35 +01:00
ircd::db: Better cursor comparison.
This commit is contained in:
parent
5e137c676f
commit
676baec73d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue