Files
doris/docs/zh-CN/sql-reference/sql-functions/bitmap-functions/bitmap_empty.md

1.4 KiB

title, language
title language
bitmap_empty zh-CN

bitmap_empty

description

Syntax

BITMAP BITMAP_EMPTY()

返回一个空bitmap。主要用于 insert 或 stream load 时填充默认值。例如

cat data | curl --location-trusted -u user:passwd -T - -H "columns: dt,page,v1,v2=bitmap_empty()"   http://host:8410/api/test/testDb/_stream_load

example

mysql> select bitmap_count(bitmap_empty());
+------------------------------+
| bitmap_count(bitmap_empty()) |
+------------------------------+
|                            0 |
+------------------------------+

keyword

BITMAP_EMPTY,BITMAP