Remove key atomization in SchemaUtils.to_typemap/2#3534
Draft
ruslandoga wants to merge 4 commits into
Draft
Conversation
SchemaUtils.to_timemap/1
ruslandoga
commented
May 28, 2026
| [normalized_key] = Map.keys(typemap) | ||
| assert is_atom(normalized_key) | ||
| assert String.valid?(Atom.to_string(normalized_key)) | ||
| assert SchemaUtils.to_typemap(%{raw => "x"}) == %{"yþy" => %{t: :string}} |
Contributor
Author
There was a problem hiding this comment.
Off-topic, but is this actually the desired behaviour? The produced string is very different.
iex(1)> "yþy" <> <<0>>
#==> <<121, 195, 190, 121, 0>>
iex(2)> <<0xFF, 0xFE, 0xFD>>
#==> <<255, 254, 253>>SchemaUtils.to_timemap/1SchemaUtils.to_timemap/1
Contributor
|
I think it's worth cleaning up the dead
Brief history for context on why the path is there in the first place:
Suggested steps to do this:
|
SchemaUtils.to_timemap/1SchemaUtils.to_timemap/1,2
SchemaUtils.to_timemap/1,2SchemaUtils.to_timemap/2
Contributor
Author
|
I've opened a separate PR to remove This PR will focus on removing atomization from |
SchemaUtils.to_timemap/2SchemaUtils.to_typemap/2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Sort of related: https://erlef.org/blog/eef/atom-exhaustion -- but I'll also check if it helps perf.