ClickHouse/tests/queries/0_stateless/02677_analyzer_bitmap_has_any.sql

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

37 lines
855 B
MySQL
Raw Normal View History

SELECT
bitmapHasAny(bitmapBuild([toUInt8(1)]), (
SELECT groupBitmapState(toUInt8(1))
)) has1,
bitmapHasAny(bitmapBuild([toUInt64(1)]), (
SELECT groupBitmapState(toUInt64(2))
)) has2;
SELECT '--------------';
SELECT *
FROM
(
SELECT
bitmapHasAny(bitmapBuild([toUInt8(1)]), (
SELECT groupBitmapState(toUInt8(1))
)) has1,
bitmapHasAny(bitmapBuild([toUInt64(1)]), (
SELECT groupBitmapState(toUInt64(2))
)) has2
); -- { serverError 43 }
SELECT '--------------';
SELECT *
FROM
(
SELECT
bitmapHasAny(bitmapBuild([toUInt8(1)]), (
SELECT groupBitmapState(toUInt8(1))
)) has1,
bitmapHasAny(bitmapBuild([toUInt64(1)]), (
SELECT groupBitmapState(toUInt64(2))
)) has2
) SETTINGS allow_experimental_analyzer = 1;