readjust test 01172_transaction_counters

This commit is contained in:
Sema Checherinda 2022-12-09 12:18:47 +01:00
parent 6aa0b2a847
commit 8c14e228bf
2 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,6 @@
6 all_3_3_0 1
6 all_4_4_0 1
7 all_1_1_0 (0,0,'00000000-0000-0000-0000-000000000000') 0
7 all_2_2_0 (1,1,'00000000-0000-0000-0000-000000000000') 0
7 all_3_3_0 (0,0,'00000000-0000-0000-0000-000000000000') 0
7 all_4_4_0 (0,0,'00000000-0000-0000-0000-000000000000') 0
8 1

View File

@ -31,7 +31,7 @@ attach table txn_counters;
begin transaction;
insert into txn_counters(n) values (4);
select 6, system.parts.name, txn_counters.creation_tid = system.parts.creation_tid from txn_counters join system.parts on txn_counters._part = system.parts.name where database=currentDatabase() and table='txn_counters' order by system.parts.name;
select 7, name, removal_tid, removal_csn from system.parts where database=currentDatabase() and table='txn_counters' order by system.parts.name;
select 7, name, removal_tid, removal_csn from system.parts where database=currentDatabase() and table='txn_counters' and active order by system.parts.name;
select 8, transactionID().3 == serverUUID();
commit;