This is experimental functionality, and as such subject to change. Use at your own risk!
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.
BIT_SET function
Applies to ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
bitwise operations can be matched to represent the BIT_SET function.
Using Settings.transformPatternsBitSet, the following transformations can be achieved:
-- With Settings.transformPatternsBitSet active, this: SELECT a | (1 << b), a & ~(1 << b) FROM tab; -- ... is transformed into the equivalent expression: SELECT bit_set(a, b), bit_set(a, b, 0) FROM tab;
Feedback
Do you have any feedback about this page? We'd love to hear it!