make 01172_transaction_counters.sql stable

This commit is contained in:
Sema Checherinda 2022-12-07 14:29:34 +01:00
parent 77d2db4e81
commit 6aa0b2a847

View File

@ -2,7 +2,7 @@
drop table if exists txn_counters;
create table txn_counters (n Int64, creation_tid DEFAULT transactionID()) engine=MergeTree order by n;
create table txn_counters (n Int64, creation_tid DEFAULT transactionID()) engine=MergeTree order by n SETTINGS old_parts_lifetime=3600;
insert into txn_counters(n) values (1);
select transactionID();