()
| 404 | |
| 405 | |
| 406 | def test_always_nullable(): |
| 407 | non_nullable_schema = pa.schema([pa.field("col_1", pa.string(), nullable=False)]) |
| 408 | output = pa.BufferOutputStream() |
| 409 | with ArrowWriter(stream=output) as writer: |
| 410 | writer._build_writer(inferred_schema=non_nullable_schema) |
| 411 | assert writer._schema == pa.schema([pa.field("col_1", pa.string())]) |
nothing calls this directly
no test coverage detected