This is experimental functionality, and as such subject to change. Use at your own risk!
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!