Compartir a través de


bitmap_bucket_numberFunción

Se aplica a: casilla marcada como sí Databricks SQL casilla marcada como Sí Databricks Runtime 13.3 LTS y versiones posteriores

Devuelve el número de cubo del mapa de bits para un BIGINT número dado.

Esta función se usa en combinación con la función bitmap_count() para contar números enteros distintos.

En combinación con la función bitmap_bit_position(), identifica de forma única cualquier número BIGINT.

Sintaxis

bitmap_bucket_number(expr)

Argumentos

  • expr: expresión BIGINT.

Devoluciones

BIGINT.

Si expr es >0, el resultado coincide con: ((expr - 1) DIV 32768) + 1. Si expr es <= 0, el resultado coincide con: expr DIV 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