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:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]