robin-sparkless 4.4.0

PySpark-like DataFrame API in Rust on Polars; no JVM.
Documentation
{
  "test_id": "map_concat",
  "pyspark_version": "3.5",
  "generated_at": "2025-10-27T14:13:24.732605",
  "input_data": [
    {
      "id": 1,
      "map1": {
        "a": 1,
        "b": 2
      },
      "map2": {
        "c": 3,
        "d": 4
      },
      "key": "a"
    },
    {
      "id": 2,
      "map1": {
        "x": 10,
        "y": 20
      },
      "map2": {
        "z": 30
      },
      "key": "x"
    },
    {
      "id": 3,
      "map1": {
        "p": 100,
        "q": 200
      },
      "map2": {
        "r": 300
      },
      "key": "p"
    }
  ],
  "operation": "DataFrame operation: map_concat",
  "expected_output": {
    "schema": {
      "field_count": 1,
      "field_names": [
        "map_concat(map1, map2)"
      ],
      "field_types": [
        "map"
      ],
      "fields": [
        {
          "name": "map_concat(map1, map2)",
          "type": "map",
          "nullable": true
        }
      ]
    },
    "data": [
      {
        "map_concat(map1, map2)": {
          "a": 1,
          "b": 2,
          "c": 3,
          "d": 4
        }
      },
      {
        "map_concat(map1, map2)": {
          "x": 10,
          "y": 20,
          "z": 30
        }
      },
      {
        "map_concat(map1, map2)": {
          "p": 100,
          "q": 200,
          "r": 300
        }
      }
    ],
    "row_count": 3
  }
}