Fix one more potential naming collision

This commit is contained in:
Jamie Gaskins 2024-03-10 15:45:53 -05:00
parent 133b78fc28
commit 2b6e4efbeb

View file

@ -134,7 +134,7 @@ module DB
{% if value[:converter] %} {% if value[:converter] %}
{{value[:converter]}}.from_rs(rs) {{value[:converter]}}.from_rs(rs)
{% elsif value[:nilable] || value[:default] != nil %} {% elsif value[:nilable] || value[:default] != nil %}
rs.read(::Union({{value[:type]}} | Nil)) rs.read(::Union(::{{value[:type]}} | Nil))
{% else %} {% else %}
rs.read(::{{value[:type]}}) rs.read(::{{value[:type]}})
{% end %} {% end %}