Skip to content

Commit f355df6

Browse files
authored
avoid uuid collision in tests
1 parent 336a65e commit f355df6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/queries/0_stateless/01601_detach_permanently.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ SELECT 'can still show the create statement';
3333
SHOW CREATE TABLE test1601_detach_permanently_atomic.test_name_reuse FORMAT Vertical;
3434

3535
SELECT 'can not attach with bad uuid';
36-
ATTACH TABLE test1601_detach_permanently_atomic.test_name_reuse UUID '00000000-0000-0000-0000-000000000001' (`number` UInt64 ) ENGINE = MergeTree ORDER BY tuple() SETTINGS index_granularity = 8192 ; -- { serverError TABLE_ALREADY_EXISTS }
36+
ATTACH TABLE test1601_detach_permanently_atomic.test_name_reuse UUID '00000000-0000-0000-0000-000000001601' (`number` UInt64 ) ENGINE = MergeTree ORDER BY tuple() SETTINGS index_granularity = 8192 ; -- { serverError TABLE_ALREADY_EXISTS }
3737

3838
SELECT 'can attach with short syntax';
3939
ATTACH TABLE test1601_detach_permanently_atomic.test_name_reuse;

0 commit comments

Comments
 (0)