robin-sparkless 4.4.0

PySpark-like DataFrame API in Rust on Polars; no JVM.
Documentation
{
  "name": "anti_join",
  "pyspark_version": "3.5",
  "input": {
    "schema": [
      {
        "name": "id",
        "type": "string"
      },
      {
        "name": "name",
        "type": "string"
      },
      {
        "name": "dept_id",
        "type": "string"
      },
      {
        "name": "salary",
        "type": "string"
      }
    ],
    "rows": [
      [
        1,
        "Alice",
        10,
        50000
      ],
      [
        2,
        "Bob",
        20,
        60000
      ],
      [
        3,
        "Charlie",
        10,
        70000
      ],
      [
        4,
        "David",
        30,
        55000
      ],
      [
        null,
        "IT",
        10,
        null
      ],
      [
        null,
        "HR",
        20,
        null
      ],
      [
        null,
        "Finance",
        40,
        null
      ]
    ]
  },
  "operations": [
    {
      "op": "join",
      "on": [
        "id"
      ],
      "how": "left_anti"
    }
  ],
  "expected": {
    "schema": [
      {
        "name": "id",
        "type": "string"
      },
      {
        "name": "name",
        "type": "string"
      },
      {
        "name": "dept_id",
        "type": "string"
      },
      {
        "name": "salary",
        "type": "string"
      }
    ],
    "rows": [
      [
        "1",
        "Alice",
        "10",
        "50000"
      ],
      [
        "2",
        "Bob",
        "20",
        "60000"
      ],
      [
        "3",
        "Charlie",
        "10",
        "70000"
      ],
      [
        "4",
        "David",
        "30",
        "55000"
      ],
      [
        null,
        "IT",
        "10",
        null
      ],
      [
        null,
        "HR",
        "20",
        null
      ],
      [
        null,
        "Finance",
        "40",
        null
      ]
    ]
  },
  "right_input": {
    "schema": [
      {
        "name": "id",
        "type": "string"
      },
      {
        "name": "name",
        "type": "string"
      },
      {
        "name": "dept_id",
        "type": "string"
      },
      {
        "name": "salary",
        "type": "string"
      }
    ],
    "rows": []
  }
}