[fix](function) Change digital_masking function arg type to BIGINT (#7888)

Change digital_masking function arg type to BIGINT to fix the wrong result.
This commit is contained in:
qiye
2022-01-25 22:28:05 +08:00
committed by GitHub
parent a6831535e9
commit 461b352d3e
8 changed files with 8 additions and 8 deletions

View File

@ -36,7 +36,7 @@ digital_masking(digital_number)
Alias function, the original function is `concat(left(id,3),'****',right(id,4))`.
Desensitizes the input `digital_number` and returns the result after masking desensitization.
Desensitizes the input `digital_number` and returns the result after masking desensitization. `digital_number` is `BIGINT` data type.
## example