Update test.

This commit is contained in:
Nikolai Kochetov 2021-06-09 16:56:17 +03:00
parent 12791431da
commit b8c9b2a8e9
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1 @@
48406fdb38e23228b776558b4edfa795

View File

@ -0,0 +1,7 @@
drop table if exists tab;
create table tab (id UUID, value UInt32) engine = MergeTree PARTITION BY id order by tuple();
insert into tab values ('61f0c404-5cb3-11e7-907b-a6006ad3dba0', 1), ('61f0c404-5cb3-11e7-907b-a6006ad3dba0', 2);
-- Here we check that partition id for UUID partition key did not change.
-- Different result means Backward Incompatible Change. Old partitions will not be accepted by new server.
select partition_id from system.parts where table = 'tab' and database = currentDatabase();
drop table if exists tab;