# Nushell core team meeting 2025-05-14 ## Attendees - Rose - Darren - Piet - Michael - Douglas - Wind - Antoine - Bahex - Jan9103 - Andy ## Agenda - [x] Issue [15738](https://github.com/nushell/nushell/issues/15738) - `<int> < null` returns a `nothing`. Per [PR #8617](https://github.com/nushell/nushell/pull/8617) this was intentional to help with `where` filters on missing data, but also created new errors with `if` in exchange: ```nu if 1 < null { false } ``` ## Discussed Topics 1. Issue 15738 - Decided to keep things as they are. Each possible return value from this type of comparison can cause issues, and the existing implementation is probably the best option. 2. Confirmation to keep `$env` case-insensitive, but all other cell-path and commands case-sensitive. 3. Datetime conversion to string: (Issue [#11265](https://github.com/nushell/nushell/issues/11265)) - Hold off and decide how to handle as part of [#14090](https://github.com/nushell/nushell/issues/14090) ("Standardizing conversions to string")