Mask() overloads for string value
| 774 | |
| 775 | /// Mask() overloads for string value |
| 776 | StringVal MaskFunctions::Mask(FunctionContext* ctx, const StringVal& val) { |
| 777 | return MaskImpl(ctx, val, MASKED_UPPERCASE, MASKED_LOWERCASE, MASKED_DIGIT, |
| 778 | MASKED_OTHER_CHAR); |
| 779 | } |
| 780 | // Marked as IR_ALWAYS_INLINE since this is called in other overloads. |
| 781 | // This way the overloads can also replace GetConstFnAttr() calls in codegen. |
| 782 | IR_ALWAYS_INLINE StringVal MaskFunctions::Mask(FunctionContext* ctx, const StringVal& val, |
nothing calls this directly
no test coverage detected