robin-sparkless 4.4.0

PySpark-like DataFrame API in Rust on Polars; no JVM.
Documentation
{
  "test_id": "column_column",
  "pyspark_version": "3.5",
  "generated_at": "2025-10-27T14:25:48.559206",
  "input_data": [
    {
      "id": 1,
      "name": "Alice",
      "age": 25,
      "salary": 50000.0
    },
    {
      "id": 2,
      "name": "Bob",
      "age": 30,
      "salary": 60000.0
    },
    {
      "id": 3,
      "name": "Charlie",
      "age": 35,
      "salary": 70000.0
    }
  ],
  "operation": "DataFrame operation: column_column",
  "expected_output": {
    "schema": {
      "field_count": 1,
      "field_names": [
        "name"
      ],
      "field_types": [
        "string"
      ],
      "fields": [
        {
          "name": "name",
          "type": "string",
          "nullable": true
        }
      ]
    },
    "data": [
      {
        "name": "Alice"
      },
      {
        "name": "Bob"
      },
      {
        "name": "Charlie"
      }
    ],
    "row_count": 3
  }
}