You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 27, 2019. It is now read-only.
create table foo(id integer);
begin;
insert into foo values(5);
delete from foo where id = 5;
The assertion failed at line 618 in src/concurrency/timestamp_ordering_transaction_manager.cpp. It seems that if the txn owns the tuple, it will not update the tuple's last reader id. So the commitId is 0 during the assertion.
The text was updated successfully, but these errors were encountered:
Yeah, we passed all the make check tests except the functions_test which is related to this problem. We will talk with @pmenon on Friday about this issue.
BTW, we just merged with catalog refactoring commit in the master with our changes. So far it doesn't break any test except the above one.
The assertion failed at line 618 in
src/concurrency/timestamp_ordering_transaction_manager.cpp
. It seems that if the txn owns the tuple, it will not update the tuple's last reader id. So the commitId is 0 during the assertion.The text was updated successfully, but these errors were encountered: