数据仓库服务 GaussDB(DWS)-Bitmap索引

时间:2025-01-26 10:51:37

Bitmap索引

该功能通过BitmapIndexSupport设置,迁移过程中默认注释掉Bitmap索引。

输入:Bitmap索引

123
CREATE BITMAP INDEX emp_bitmap_idxON index_demo (gender);

输出

1
/*CREATE BITMAP INDEX emp_bitmap_idx ON index_demo (gender);*/

如果BitmapIndexSupport设置为BTREE,迁移结果如下:

输出

12345
CREATE     /*bitmap*/     INDEX emp_bitmap_idx          ON index_demo          USING btree (gender) ;
support.huaweicloud.com/tg-dws/dws_07_6815.html