Funzione 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 genera in INVALID_UTF8_STRING
caso contrario.
Sintassi
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 genera INVALID_UTF8_STRING
in caso contrario.
Per restituire NULL
se l'input non è una stringa UTF-8 valida, usare la funzione try_validate_utf8 .
Esempi
– Simple example taking a valid string as input.
> SELECT validate_utf8('Spark')
Spark
– Simple example taking a valid collated string as input.
> SELECT validate_utf8('SQL' COLLATE UTF8_LCASE)
SQL
– Simple example taking a valid hexadecimal string as input.
> SELECT validate_utf8(x'61')
a
– Example taking an invalid hexadecimal string as input (illegal UTF-8 byte sequence).
> SELECT validate_utf8(x'80')
[INVALID_UTF8_STRING] Invalid UTF8 byte sequence found in string: \x80.