Função is_valid_utf8
Aplica-se a: Databricks Runtime 15.4 e posterior
Retorna true
se a entrada for uma string UTF-8 válida, caso contrário, retorna false
.
Sintaxe
is_valid_utf8(strExpr)
Argumentos
strExpr
: uma expressãoSTRING
.
Devoluções
A BOOLEAN
, indicando se a entrada STRING representa uma string UTF-8 válida.
Exemplos
– Simple example taking a valid string as input.
> SELECT is_valid_utf8('Spark')
true
– Simple example taking a valid collated string as input.
> SELECT is_valid_utf8('SQL' COLLATE UTF8_LCASE)
true
– Simple example taking a valid hexadecimal string as input.
> SELECT is_valid_utf8(x'61')
true
– Example taking an invalid hexadecimal string as input (illegal UTF-8 byte sequence).
> SELECT is_valid_utf8(x'80')
false
- Example taking an invalid hexadecimal string as input (illegal UTF-8 byte sequence).
> SELECT is_valid_utf8(x'61C262')
false