robin-sparkless 4.4.0

PySpark-like DataFrame API in Rust on Polars; no JVM.
Documentation
{
  "name": "join_null_keys",
  "pyspark_version": "3.5.0",
  "input": {
    "schema": [
      {
        "name": "dept_id",
        "type": "bigint"
      },
      {
        "name": "id",
        "type": "bigint"
      },
      {
        "name": "name",
        "type": "string"
      }
    ],
    "rows": [
      [
        10,
        1,
        "Alice"
      ],
      [
        null,
        2,
        "Bob"
      ],
      [
        20,
        3,
        "Charlie"
      ]
    ]
  },
  "right_input": {
    "schema": [
      {
        "name": "dept_id",
        "type": "bigint"
      },
      {
        "name": "location",
        "type": "string"
      }
    ],
    "rows": [
      [
        10,
        "NYC"
      ],
      [
        null,
        "Unknown"
      ],
      [
        20,
        "LA"
      ]
    ]
  },
  "operations": [
    {
      "op": "join",
      "on": [
        "dept_id"
      ],
      "how": "inner"
    }
  ],
  "expected": {
    "schema": [
      {
        "name": "dept_id",
        "type": "bigint"
      },
      {
        "name": "id",
        "type": "bigint"
      },
      {
        "name": "name",
        "type": "string"
      },
      {
        "name": "location",
        "type": "string"
      }
    ],
    "rows": [
      [
        10,
        1,
        "Alice",
        "NYC"
      ],
      [
        20,
        3,
        "Charlie",
        "LA"
      ]
    ]
  }
}