Skip to content

[Bug] DataFrame.readJson() reads null as empty list in array column #2048

Description

@Jolanrensen
DataFrame.readJsonStr("""[null, [123], []]""")

produces

         array
     List<Int>
          ----
  0        [ ]
  1      [123]
  2        [ ]

Expected:

         array
    List<Int>?
          ----
  0       null
  1      [123]
  2        [ ]

Fixes #2046

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Labels

bugSomething isn't working

Type

No type

Projects

No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions