Función h3_isvalid
Se aplica a: Databricks SQL Databricks Runtime 11.3 LTS y versiones posteriores
Al ejecutar esta función, se devuelve el valor true si la expresión BIGINT o STRING de entrada es un id. válido de celda H3.
Sintaxis
h3_isvalid ( expr )
Argumentos
expr
: una expresión BIGINT o STRING.
Devoluciones
Se devuelve un valor de tipo BOOLEAN, que se usa para indicar si la expresión BIGINT o STRING de entrada se corresponde con un id. de celda H3 válido o no.
La función devuelve NULL si la entrada es NULL.
Ejemplos
-- Simple example taking a long as input.
> SELECT h3_isvalid(599686042433355775)
true
-- Simple example taking a valid hexadecimal string as input.
> SELECT h3_isvalid('85283473fffffff')
true
-- Example taking a long as input that is not a valid H3 cell ID.
> SELECT h3_isvalid(599686042433355776)
false
-- Example where the input is an invalid hexadecimal string.
> SELECT h3_isvalid('I am not an H3 cell ID')
false