This documentation is for the unreleased development version of jOOQ. Click on the above version links to get this documentation for a supported version of jOOQ.
Empty scalar subquery
Applies to ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
When a scalar subquery is provably empty, we can replace it with NULL
.
Using Settings.transformPatternsEmptyScalarSubquery
, the following transformations can be achieved:
-- With Settings.transformPatternsEmptyScalarSubquery active, this: SELECT (SELECT c FROM tab WHERE FALSE); -- ... is transformed into the equivalent expression: SELECT NULL -- (SELECT c FROM tab WHERE FALSE);
Feedback
Do you have any feedback about this page? We'd love to hear it!