直接插入Bitmap数据
#10459
Replies: 2 comments 6 replies
-
当前 Doris 并没有提供关于 Bitmap 二进制类型的写入接口,有导出的接口,所以如果要插入 bitmap 类型的值,当前还是必须要走 to_bitmap() 函数进行转换 |
Beta Was this translation helpful? Give feedback.
6 replies
-
可以试试这种方式,我验证过了,没问题 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
看文档描述BitMap类型的数据写入都需要通过to_bitmap()函数的定义转换,如果我想通过代码直接load进去bitmap类型的值, 不经过函数转换;使用Java代码请问应该怎么操作?测试通过Jdbc的setBytes()或setObject()都无法实现(借用了BitmapValue.java代码逻辑)
Beta Was this translation helpful? Give feedback.
All reactions