bitmap_bit_position
Función
Se aplica a: Databricks SQL Databricks Runtime 13.3 LTS y versiones posteriores
Devuelve la posición en bits basada en 0 de un BIGINT
número dado dentro de un cubo.
En combinación con la función bitmap_bucket_number(), identifica de forma única cualquier número BIGINT
.
Sintaxis
bitmap_bit_position(expr)
Argumentos
expr
: expresiónBIGINT
.
Devoluciones
BIGINT
entre 0 y 32767.
Si expr
es >0
, el resultado coincide con: (expr - 1) % 32768
.
Si expr
es <= 0
, el resultado coincide con: abs(expr) % 32768
.
Ejemplos
> SELECT bitmap_bucket_number(1), bitmap_bit_position(1);
1 0
> SELECT bitmap_bucket_number(32768), bitmap_bit_position(32768);
1 32767
> SELECT bitmap_bucket_number(32769), bitmap_bit_position(32769);
2 0
> SELECT bitmap_bucket_number(0), bitmap_bit_position(0);
0 0
> SELECT bitmap_bucket_number(-32767), bitmap_bit_position(-32767);
0 32767
> SELECT bitmap_bucket_number(-32768), bitmap_bit_position(-32768);
-1 0