Función try_validate_utf8

Se aplica a: casilla marcada como Sí Databricks Runtime 15.4 y versiones posteriores

Devuelve el valor de entrada si corresponde a una cadena UTF-8 válida o NULL.

Sintaxis

try_validate_utf8(strExpr)

Argumentos

  • strExpr: expresión STRING.

Devoluciones

Un STRING de tipo byte igual a strExpr en caso de que represente una cadena UTF-8 válida o NULL.

Para devolver un error si la entrada no es una cadena UTF-8 válida, use la función validate_utf8 .

Ejemplos

– 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