MaskShowFirstN overloads for string value
| 443 | |
| 444 | /// MaskShowFirstN overloads for string value |
| 445 | StringVal MaskFunctions::MaskShowFirstN(FunctionContext* ctx, const StringVal& val) { |
| 446 | return MaskShowFirstNImpl(ctx, val, CHAR_COUNT, MASKED_UPPERCASE, MASKED_LOWERCASE, |
| 447 | MASKED_DIGIT, MASKED_OTHER_CHAR); |
| 448 | } |
| 449 | StringVal MaskFunctions::MaskShowFirstN(FunctionContext* ctx, const StringVal& val, |
| 450 | const IntVal& char_count) { |
| 451 | int un_mask_char_count = char_count.val; |
nothing calls this directly
no test coverage detected