Funzione try_validate_utf8
Si applica a: Databricks Runtime 15.4 e versioni successive
Restituisce il valore di input se corrisponde a una stringa UTF-8 valida o NULL
in caso contrario.
Sintassi
try_validate_utf8(strExpr)
Argomenti
strExpr
: un’espressioneSTRING
.
Valori restituiti
Oggetto STRING
che è a livello di byte uguale a strExpr
nel caso in cui rappresenti una stringa UTF-8 valida o NULL
in caso contrario.
Per restituire un errore se l'input non è una stringa UTF-8 valida, usare la funzione validate_utf8 .
Esempi
– Simple example taking a valid string as input.
> SELECT try_validate_utf8('Spark')
Spark
– Simple example taking a valid collated string as input.
> SELECT try_validate_utf8('SQL' COLLATE UTF8_LCASE)
SQL
– Simple example taking a valid hexadecimal string as input.
> SELECT try_validate_utf8(x'61')
a
– Example taking an invalid hexadecimal string as input (illegal UTF-8 byte sequence).
> SELECT try_validate_utf8(x'80')
NULL
- Example taking an invalid hexadecimal string as input (illegal UTF-8 byte sequence).
> SELECT try_validate_utf8(x'61C262')
NULL