ClickHouse/tests/queries/0_stateless/03227_json_invalid_regexp.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
247 B
MySQL
Raw Normal View History

set allow_experimental_json_type = 1;
2024-08-19 17:36:20 +00:00
create table test (json JSON(SKIP REGEXP '[]')) engine=Memory(); -- {serverError CANNOT_COMPILE_REGEXP}
create table test (json JSON(SKIP REGEXP '+')) engine=Memory(); -- {serverError CANNOT_COMPILE_REGEXP};