aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/select/null_check.sql
blob: 2c24b3e3afbd9183051c09ec8797ea41468041ef (plain) (blame)
1
2
3
4
5
6
7
/* postgres can not */
/* by correct way ;-)
E   assert 'a;;a' == 'a;Void;b'
E     - a;;a
E     + a;Void;b
*/
SELECT 'a', x, 'b' FROM (SELECT Null as x) as sq WHERE x IS NULL;