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_GET function
Applies to ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
bitwise operations can be matched to represent the BIT_GET function.
Using Settings.transformPatternsBitGet
, the following transformations can be achieved:
-- With Settings.transformPatternsBitGet active, this: SELECT (a & (1 << b)) >> b FROM tab; -- ... is transformed into the equivalent expression: SELECT bit_get(a, b) FROM tab;
Feedback
Do you have any feedback about this page? We'd love to hear it!