v.21.11New Features
Bit Shift Operations for FixedString and String Data Types
Bit shift operations forFixedStringandStringdata types. This closes #27763. #28325 (小路).
Why it matters
This feature enables users to perform bit shift operations directly onFixedString and String types, expanding the range of binary manipulations possible within ClickHouse. It addresses the lack of native bit shift support for these data types, improving flexibility and efficiency in string-related binary processing tasks.How to use it
Users can apply bit shift operations onFixedString and String columns using the existing bit shift operators (e.g., <<, >>) in their SQL queries just as they would with numeric types.