mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
11 lines
446 B
SQL
11 lines
446 B
SQL
-- Tags: no-parallel
|
|
-- (databases can be removed in background, so this test should not be run in parallel)
|
|
|
|
DROP TABLE IF EXISTS t;
|
|
CREATE TABLE t (b UInt8) ENGINE = Memory;
|
|
SELECT a FROM merge(REGEXP('.'), '^t$'); -- { serverError 47 }
|
|
SELECT a FROM merge(REGEXP('\0'), '^t$'); -- { serverError 47 }
|
|
SELECT a FROM merge(REGEXP('\0a'), '^t$'); -- { serverError 47 }
|
|
SELECT a FROM merge(REGEXP('\0a'), '^$'); -- { serverError 36 }
|
|
DROP TABLE t;
|