get_schema_drift
Compare schema changes between two dataset versions. Detects added or removed columns, type changes, and null-rate shifts to assess impact as identical, additive, or breaking.
Instructions
Compare schema (columns, types, nullability) between two indexed datasets. Detects added/removed columns, type changes, and null-rate shifts. Pure in-memory comparison — no re-reading source files. Useful for detecting schema changes between dataset versions. Assessment: 'identical' | 'additive' (only additions) | 'breaking' (removals or type changes).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dataset_a | Yes | First dataset identifier (baseline) | |
| dataset_b | Yes | Second dataset identifier (comparison target) |