yuanfeng0905 opened a new issue #4130:
URL: https://github.com/apache/incubator-doris/issues/4130


   
   example sql:
   
   ```sql
   select a,from_base64(a) 
   from (
       select "aGVsbG8=" a 
       union all
       select null a
   ) t
   ```
   The expect result is:
   
   | a | from_base64(`a`) |
   | - | - |
   |  aGVsbG8= | hello |
   |    |    |
   
   But now the result is:
   
   | a | from_base64(`a`) |
   | - | - |
   |  aGVsbG8= | hello |
   |  | hello |
   
   **Doris version: 0.11.25 (baidu-doris/incubator-doris)**
   


----------------------------------------------------------------
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.

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