Merge pull request #37744 from vdimir/issue_35857

Add test 02315_pmj_union_ubsan_35857
This commit is contained in:
Vladimir C 2022-06-02 09:50:18 +02:00 committed by GitHub
commit 7f7099e70f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,2 @@
\N
\N

View File

@ -0,0 +1,24 @@
-- Tags: no-backward-compatibility-check
SET join_algorithm = 'partial_merge';
SELECT NULL
FROM
(
SELECT
NULL,
1 AS a,
0 :: Nullable(UInt8) AS c
UNION ALL
SELECT
NULL,
65536,
NULL
) AS js1
ALL LEFT JOIN
(
SELECT 2 :: Nullable(UInt8) AS a
) AS js2
USING (a)
ORDER BY c
;