gohalo opened a new issue, #52767:
URL: https://github.com/apache/doris/issues/52767

   ### Search before asking
   
   - [x] I had searched in the 
[issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no 
similar issues.
   
   
   ### Version
   
   2.1.6
   
   ### What's Wrong?
   
   As the title described, related be nodes maybe core dump because of invalid 
bitmap data.
   
   ### What You Expected?
   
   Got error message instead of core dump.
   
   ### How to Reproduce?
   
   Create a simple table with bitmap value.
   
   ```
   CREATE TABLE test_bitmap(
       id BIGINT NOT NULL,
       arr BITMAP BITMAP_UNION NOT NULL
   )
   AGGREGATE KEY(id)
   DISTRIBUTED BY HASH(id) BUCKETS 1
   properties(
     "replication_num" = "1"
   );
   ```
   and `test.csv` file, only one simple line
   
   ```
   1|Av8DCg==
   ```
   
   then load it, and the be will core dump
   
   ```
   curl --location-trusted -u root: \
       -H "Expect: 100-continue" \
       -H "column_separator:|" \
       -H "columns:id,arr,arr=bitmap_from_base64(arr)" \
       -T test.csv \
       -XPUT http://127.0.0.1:8030/api/test/test_bitmap/_stream_load
   ```
   
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [x] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [x] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to