MaskShowLastN overloads for string value
| 533 | |
| 534 | /// MaskShowLastN overloads for string value |
| 535 | StringVal MaskFunctions::MaskShowLastN(FunctionContext* ctx, const StringVal& val) { |
| 536 | return MaskShowLastNImpl(ctx, val, CHAR_COUNT, MASKED_UPPERCASE, MASKED_LOWERCASE, |
| 537 | MASKED_DIGIT, MASKED_OTHER_CHAR); |
| 538 | } |
| 539 | StringVal MaskFunctions::MaskShowLastN(FunctionContext* ctx, const StringVal& val, |
| 540 | const IntVal& char_count) { |
| 541 | int un_mask_char_count = char_count.val; |
nothing calls this directly
no test coverage detected